@@ -47,7 +47,7 @@ |
||
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 |
@@ -36,7 +36,7 @@ |
||
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); |