Passed
Pull Request — master (#6760)
by Marco
11:57
created
Doctrine/Tests/ORM/Functional/OneToOneInverseSideLoadAfterDqlQueryTest.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\Tests\ORM\Functional;
6 6
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
                 $this->_em->getClassMetadata(OwningSide::class),
21 21
                 $this->_em->getClassMetadata(InverseSide::class),
22 22
             ]);
23
-        } catch(ToolsException $e) {
23
+        } catch (ToolsException $e) {
24 24
             // ignored
25 25
         }
26 26
     }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/InverseSide.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\OneToOneInverseSideLoad;
6 6
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/OneToOneInverseSideLoad/OwningSide.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\OneToOneInverseSideLoad;
6 6
 
Please login to merge, or discard this patch.