Test Failed
Pull Request — develop (#6743)
by Grégoire
64:39
created
lib/Doctrine/ORM/Cache/MetadataCacheUsesNonPersistentCache.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\Cache;
6 6
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public static function fromDriver(Cache $cache) : self
12 12
     {
13 13
         return new self(
14
-            'Metadata Cache uses a non-persistent cache driver, ' . get_class($cache) . '.'
14
+            'Metadata Cache uses a non-persistent cache driver, '.get_class($cache).'.'
15 15
         );
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Cache/QueryCacheUsesNonPersistentCache.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\Cache;
6 6
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     public static function fromDriver(Cache $cache) : self
12 12
     {
13 13
         return new self(
14
-            'Query Cache uses a non-persistent cache driver, ' . get_class($cache) . '.'
14
+            'Query Cache uses a non-persistent cache driver, '.get_class($cache).'.'
15 15
         );
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/ORMException.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.