Skip to content

Commit

Permalink
fix minor issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekX committed May 2, 2019
1 parent 9bf2503 commit 2823522
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Operators/ConcatOperator.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public function configure(array $config)

$this->concatOperators = [];

for ($i = 1; $i < count($config); $i++) {
$maxCount = count($config);
for ($i = 1; $i < $maxCount; $i++) {
$this->assertIsExpression($config[$i]);
$this->concatOperators[] = $this->parser->parse($config[$i]);
}
Expand Down

0 comments on commit 2823522

Please sign in to comment.