Completed
Push — develop ( 33eed9...a73e2c )
by Carsten
21s queued 14s
created
module/Core/test/CoreTestUtils/Constraint/DefaultAttributesValues.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 
111 111
     protected function failureDescription($other): string
112 112
     {
113
-        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)) . ' ' . $this->toString();
113
+        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)).' '.$this->toString();
114 114
     }
115 115
 
116 116
     protected function additionalFailureDescription($other): string
Please login to merge, or discard this patch.
Core/test/CoreTestUtils/Mock/ServiceManager/CreateInstanceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         
64 64
         $reflection = new \ReflectionClass($this->class);
65 65
         $args       = array_map(
66
-            function ($arg) use ($container) {
66
+            function($arg) use ($container) {
67 67
                 return is_string($arg) && 0 === strpos($arg, '@') ? $container->get(substr($arg, 1)) : $arg;
68 68
             },
69 69
             $this->args
Please login to merge, or discard this patch.
module/Core/test/CoreTestUtils/Mock/ServiceManager/PluginManagerMock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
                                 $methodName,
176 176
                                 '*' == $name ? '' : $name,
177 177
                                 $count,
178
-                                null === $options ? '' : ' with options hash ' . $optHash,
178
+                                null === $options ? '' : ' with options hash '.$optHash,
179 179
                                 $actual
180 180
                             )
181 181
                         );
Please login to merge, or discard this patch.