Failed Conditions
Pull Request — develop (#6719)
by Marco
65:21
created
IdentityIsAssociation/ToOneCompositeAssociationToMultipleSimpleId.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\Tests\Models\IdentityIsAssociation;
6 6
 
Please login to merge, or discard this patch.
IdentityIsAssociation/NestedAssociationToToOneAssociationIdToSimpleId.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\Tests\Models\IdentityIsAssociation;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/IdentityIsAssociation/SimpleId.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\Tests\Models\IdentityIsAssociation;
6 6
 
Please login to merge, or discard this patch.
Tests/Models/IdentityIsAssociation/ToOneAssociationIdToSimpleId.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\Tests\Models\IdentityIsAssociation;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/ProxySpecifics/FuncGetArgs.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\Tests\Models\ProxySpecifics;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Performance/Hydration/SimpleInsertPerformanceBench.php 1 patch
Spacing   +5 added lines, -5 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\Performance\Hydration;
6 6
 
@@ -40,8 +40,8 @@  discard block
 block discarded – undo
40 40
         for ($i = 1; $i <= 10000; ++$i) {
41 41
             $user           = new CMS\CmsUser;
42 42
             $user->status   = 'user';
43
-            $user->username = 'user' . $i;
44
-            $user->name     = 'Mr.Smith-' . $i;
43
+            $user->username = 'user'.$i;
44
+            $user->name     = 'Mr.Smith-'.$i;
45 45
 
46 46
             $this->users[$i] = $user;
47 47
         }
@@ -49,12 +49,12 @@  discard block
 block discarded – undo
49 49
 
50 50
     public function benchHydration() : void
51 51
     {
52
-        $this->entityManager->createQuery('DELETE FROM ' . CMS\CmsUser::class . ' u')->execute();
52
+        $this->entityManager->createQuery('DELETE FROM '.CMS\CmsUser::class.' u')->execute();
53 53
 
54 54
         foreach ($this->users as $key => $user) {
55 55
             $this->entityManager->persist($user);
56 56
 
57
-            if (! ($key % 20)) {
57
+            if ( ! ($key % 20)) {
58 58
                 $this->entityManager->flush();
59 59
                 $this->entityManager->clear();
60 60
             }
Please login to merge, or discard this patch.