Test Failed
Pull Request — develop (#6743)
by Grégoire
64:22
created
lib/Doctrine/ORM/PersisterException.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;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/ORMException.php 1 patch
Spacing   +4 added lines, -4 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;
6 6
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public static function invalidOrientation($className, $field)
49 49
     {
50
-        return new self("Invalid order by orientation specified for " . $className . "#" . $field);
50
+        return new self("Invalid order by orientation specified for ".$className."#".$field);
51 51
     }
52 52
 
53 53
     /**
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public static function queryCacheUsesNonPersistentCache(CacheDriver $cache)
91 91
     {
92
-        return new self('Query Cache uses a non-persistent cache driver, ' . get_class($cache) . '.');
92
+        return new self('Query Cache uses a non-persistent cache driver, '.get_class($cache).'.');
93 93
     }
94 94
 
95 95
     /**
@@ -99,6 +99,6 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache)
101 101
     {
102
-        return new self('Metadata Cache uses a non-persistent cache driver, ' . get_class($cache) . '.');
102
+        return new self('Metadata Cache uses a non-persistent cache driver, '.get_class($cache).'.');
103 103
     }
104 104
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager/InvalidHydrationMode.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\EntityManager;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager/MismatchedEventManager.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\EntityManager;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager/MissingIdentifierField.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\EntityManager;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager/UnrecognizedIdentifierFields.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\EntityManager;
6 6
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public static function fromClassAndFieldNames(string $className, array $fieldNames) : self
12 12
     {
13 13
         return new self(
14
-            "Unrecognized identifier fields: '" . implode("', '", $fieldNames) . "' " .
14
+            "Unrecognized identifier fields: '".implode("', '", $fieldNames)."' ".
15 15
             "are not present on class '$className'."
16 16
         );
17 17
     }
Please login to merge, or discard this patch.