Skip to content

Commit

Permalink
typo (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
zelenomodrypes authored Jan 15, 2025
1 parent 3d7ea7f commit 40cfc28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/collection-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ If you need more advance operation than appending the expression, either constru

```php
$expression = $helper->processExpression($builder, $args[0], $aggregator);
return new DbalExpressionResult(['SUBSTRING(%ex, 0, %i) = %s', $expression->args, \strlen($args[1]), $args[1]]);
return new DbalExpressionResult('SUBSTRING(%ex, 0, %i) = %s', [$expression->args, \strlen($args[1]), $args[1]]);
```

#### Array Implementation
Expand Down

0 comments on commit 40cfc28

Please sign in to comment.