Completed
Push — master ( 2e598e...56ae87 )
by Daniel
03:34
created
bridge/doctrine-orm/tests/Functional/PsiToOrmQueryBuilderConverterTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
bridge/doctrine-orm/tests/Unit/OrmAgentTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
bridge/doctrine-collections/lib/CollectionsAgent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
bridge/doctrine-collections/lib/CollectionsVisitor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
bridge/doctrine-collections/tests/Functional/CollectionsAgentTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
bridge/doctrine-collections/tests/Unit/StoreTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.