Passed
Branch 1.x (1deb99)
by Akihito
03:02
created
Category
src/Spy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function getLogs($class, $name)
49 49
     {
50
-        if (! isset($this->logs[$class][$name])) {
50
+        if (!isset($this->logs[$class][$name])) {
51 51
             return [];
52 52
         }
53 53
 
Please login to merge, or discard this patch.
src/TestDoubleInterceptor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         $fakeClassName = str_replace($shortClassName, 'Fake' . $shortClassName, $fullClassName);
37 37
 
38 38
         // If the fake class exists ,then invoke its method. otherwise invoke original class method.
39
-        if (! class_exists($fakeClassName)) {
39
+        if (!class_exists($fakeClassName)) {
40 40
             return $invocation->proceed();
41 41
         }
42 42
         $fakeObj = $this->injector->getInstance($fakeClassName);
Please login to merge, or discard this patch.