@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Orm\Tests\Functional; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Orm\Tests\Unit; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Collections; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Collections; |
6 | 6 | |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | return $this->walkComposite($expr); |
31 | 31 | } |
32 | 32 | |
33 | - throw new \RuntimeException('Unknown Expression: ' . get_class($expr)); |
|
33 | + throw new \RuntimeException('Unknown Expression: '.get_class($expr)); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | private function walkComparison(Comparison $comparison) |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | throw BadMethodCallException::comparisonNotSupported(Comparison::NOT_NULL); |
76 | 76 | } |
77 | 77 | |
78 | - throw new \RuntimeException('Unknown comparator: ' . $comparison->getComparator()); |
|
78 | + throw new \RuntimeException('Unknown comparator: '.$comparison->getComparator()); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | private function walkComposite(Composite $expression) |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $ormExpressions[] = $this->dispatch($childExpression); |
88 | 88 | } |
89 | 89 | |
90 | - $method = $expression->getType() == Composite::AND ? 'andX' : 'orX'; |
|
90 | + $method = $expression->getType() == Composite::AND? 'andX' : 'orX'; |
|
91 | 91 | |
92 | 92 | return call_user_func_array([$this->expressionBuilder, $method], $ormExpressions); |
93 | 93 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Orm\Tests\Functional; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Collections\Tests\Unit; |
6 | 6 |