Skip to content

Make more use of variadic functions #95

@marijnvanwezel

Description

@marijnvanwezel

Variadic functions provide slightly improved readability as opposed to arrays:

Without variadic functions:

$query = query()
    ->match([$a, $b])
    ...

With variadic functions:

$query = query()
    ->match($a, $b)
    ...

Metadata

Metadata

Labels

good first issueOpportunity for newcomers to contribute to php-cypher-dslsubject/apiIssues related to the public APItype/enhancementNew feature or request

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions