Completed
Push — master ( 2e598e...56ae87 )
by Daniel
03:34
created
lib/Query/Join.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\Component\ObjectAgent\Query;
6 6
 
Please login to merge, or discard this patch.
lib/Query/Converter/ArrayConverter.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\Component\ObjectAgent\Query\Converter;
6 6
 
Please login to merge, or discard this patch.
lib/EventDispatchingAgent.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\Component\ObjectAgent;
6 6
 
Please login to merge, or discard this patch.
lib/Events.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\Component\ObjectAgent;
6 6
 
Please login to merge, or discard this patch.
bridge/doctrine-phpcr-odm/tests/Functional/Model/PageNoUuid.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\PhpcrOdm\Tests\Functional\Model;
6 6
 
Please login to merge, or discard this patch.
bridge/doctrine-phpcr-odm/tests/Functional/Model/Article.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\PhpcrOdm\Tests\Functional\Model;
6 6
 
Please login to merge, or discard this patch.
bridge/doctrine-phpcr-odm/tests/Functional/PhpcrOdmTestCase.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\PhpcrOdm\Tests\Functional;
6 6
 
Please login to merge, or discard this patch.
bridge/doctrine-orm/lib/OrmAgent.php 1 patch
Spacing   +3 added lines, -3 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\Orm;
6 6
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $idField = reset($idFields);
105 105
 
106 106
         $queryBuilder = $this->entityManager->getRepository($class)->createQueryBuilder('a');
107
-        $queryBuilder->where($queryBuilder->expr()->in('a.' . $idField, ':identifiers'));
107
+        $queryBuilder->where($queryBuilder->expr()->in('a.'.$idField, ':identifiers'));
108 108
         $queryBuilder->setParameter('identifiers', $identifiers);
109 109
 
110 110
         return $queryBuilder->getQuery()->execute();
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         $idField = reset($identifierFields);
213 213
 
214 214
         $query = $query->cloneWith([
215
-            'selects' => ['count(distinct ' . PsiToOrmQueryBuilderConverter::FROM_ALIAS . '.' . $idField . ')'],
215
+            'selects' => ['count(distinct '.PsiToOrmQueryBuilderConverter::FROM_ALIAS.'.'.$idField.')'],
216 216
             'firstResult' => null,
217 217
             'maxResults' => null,
218 218
         ]);
Please login to merge, or discard this patch.
bridge/doctrine-orm/tests/Functional/OrmTestCase.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.