@@ -110,7 +110,7 @@ |
||
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 |
@@ -63,7 +63,7 @@ |
||
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 |
@@ -175,7 +175,7 @@ |
||
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 | ); |