Failed Conditions
Pull Request — develop (#6600)
by Mike
62:56
created
lib/Doctrine/ORM/Sequencing/Generator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/BigIntegerIdentityGenerator.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 Doctrine\ORM\Sequencing;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/TableGenerator.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
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                         $this->tableName, $this->sequenceName, $this->allocationSize
78 78
                     );
79 79
 
80
-                    if ($conn->executeUpdate($updateSql, [1 => $currentLevel, 2 => $currentLevel+1]) !== 1) {
80
+                    if ($conn->executeUpdate($updateSql, [1 => $currentLevel, 2 => $currentLevel + 1]) !== 1) {
81 81
                         // no affected rows, concurrency issue, throw exception
82 82
                     }
83 83
                 } else {
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/SequenceGenerator.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 Doctrine\ORM\Sequencing;
6 6
 
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,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing\Planning;
7 7
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function executeDeferred(EntityManagerInterface $entityManager, /*object*/ $entity): void
41 41
     {
42 42
         foreach ($this->executors as $executor) {
43
-            if (! $executor->isDeferred()) {
43
+            if ( ! $executor->isDeferred()) {
44 44
                 continue;
45 45
             }
46 46
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/NoopValueGenerationPlan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing\Planning;
7 7
 
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,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing\Planning;
7 7
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     public function executeImmediate(EntityManagerInterface $entityManager, /*object*/ $entity): void
27 27
     {
28
-        if (! $this->executor->isDeferred()) {
28
+        if ( ! $this->executor->isDeferred()) {
29 29
             $this->dispatchExecutor($entity, $entityManager);
30 30
         }
31 31
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/ValueGenerationExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing\Planning;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/ColumnValueGeneratorExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 
4
-declare(strict_types=1);
4
+declare(strict_types = 1);
5 5
 
6 6
 namespace Doctrine\ORM\Sequencing\Planning;
7 7
 
Please login to merge, or discard this patch.