@@ -1,6 +1,6 @@ |
||
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 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Doctrine\ORM; |
6 | 6 |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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 | } |
@@ -1,7 +1,7 @@ |
||
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 |
@@ -1,7 +1,7 @@ |
||
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 |