Test Failed
Pull Request — develop (#6743)
by Grégoire
63:07
created
lib/Doctrine/ORM/Tools/NotSupported.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\Tools;
6 6
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/SchemaToolException.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   +7 added lines, -7 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
     /**
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public static function queryCacheUsesNonPersistentCache(CacheDriver $cache)
117 117
     {
118
-        return new self('Query Cache uses a non-persistent cache driver, ' . get_class($cache) . '.');
118
+        return new self('Query Cache uses a non-persistent cache driver, '.get_class($cache).'.');
119 119
     }
120 120
 
121 121
     /**
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public static function metadataCacheUsesNonPersistentCache(CacheDriver $cache)
127 127
     {
128
-        return new self('Metadata Cache uses a non-persistent cache driver, ' . get_class($cache) . '.');
128
+        return new self('Metadata Cache uses a non-persistent cache driver, '.get_class($cache).'.');
129 129
     }
130 130
 
131 131
     /**
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      */
167 167
     public static function missingIdentifierField($className, $fieldName)
168 168
     {
169
-        return new self("The identifier $fieldName is missing for a query of " . $className);
169
+        return new self("The identifier $fieldName is missing for a query of ".$className);
170 170
     }
171 171
 
172 172
     /**
@@ -178,8 +178,8 @@  discard block
 block discarded – undo
178 178
     public static function unrecognizedIdentifierFields($className, $fieldNames)
179 179
     {
180 180
         return new self(
181
-            "Unrecognized identifier fields: '" . implode("', '", $fieldNames) . "' " .
182
-            "are not present on class '" . $className . "'."
181
+            "Unrecognized identifier fields: '".implode("', '", $fieldNames)."' ".
182
+            "are not present on class '".$className."'."
183 183
         );
184 184
     }
185 185
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Configuration/NamedNativeQueryNotFound.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\Configuration;
6 6
 
@@ -10,6 +10,6 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public static function fromName(string $queryName) : self
12 12
     {
13
-        return new self('Could not find a named query by the name "' . $queryName . '"');
13
+        return new self('Could not find a named query by the name "'.$queryName.'"');
14 14
     }
15 15
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Configuration/InvalidEntityRepository.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\Configuration;
7 7
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Configuration/ProxyClassesAlwaysRegenerating.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\Configuration;
7 7
 
Please login to merge, or discard this patch.