Failed Conditions
Push — master ( 46ea9d...3e1d12 )
by Marco
23:45 queued 16:37
created
lib/Doctrine/ORM/Sequencing/UuidGenerator.php 1 patch
Spacing   +2 added lines, -2 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 Doctrine\ORM\Sequencing;
6 6
 
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     public function generate(EntityManagerInterface $em, ?object $entity)
18 18
     {
19 19
         $conn = $em->getConnection();
20
-        $sql  = 'SELECT ' . $conn->getDatabasePlatform()->getGuidExpression();
20
+        $sql  = 'SELECT '.$conn->getDatabasePlatform()->getGuidExpression();
21 21
 
22 22
         return $conn->query($sql)->fetchColumn(0);
23 23
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/CompositeValueGenerationPlan.php 1 patch
Spacing   +2 added lines, -2 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 Doctrine\ORM\Sequencing\Planning;
6 6
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function executeDeferred(EntityManagerInterface $entityManager, object $entity) : void
40 40
     {
41 41
         foreach ($this->executors as $executor) {
42
-            if (! $executor->isDeferred()) {
42
+            if ( ! $executor->isDeferred()) {
43 43
                 continue;
44 44
             }
45 45
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/SingleValueGenerationPlan.php 1 patch
Spacing   +2 added lines, -2 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 Doctrine\ORM\Sequencing\Planning;
6 6
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function executeImmediate(EntityManagerInterface $entityManager, object $entity) : void
26 26
     {
27
-        if (! $this->executor->isDeferred()) {
27
+        if ( ! $this->executor->isDeferred()) {
28 28
             $this->dispatchExecutor($entity, $entityManager);
29 29
         }
30 30
     }
Please login to merge, or discard this patch.