We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bf2503 commit 2823522Copy full SHA for 2823522
1 file changed
src/Operators/ConcatOperator.php
@@ -47,7 +47,8 @@ public function configure(array $config)
47
48
$this->concatOperators = [];
49
50
- for ($i = 1; $i < count($config); $i++) {
+ $maxCount = count($config);
51
+ for ($i = 1; $i < $maxCount; $i++) {
52
$this->assertIsExpression($config[$i]);
53
$this->concatOperators[] = $this->parser->parse($config[$i]);
54
}
0 commit comments