@@ -76,7 +76,7 @@ |
||
76 | 76 | */ |
77 | 77 | private static function requireFile($mapFileName) |
78 | 78 | { |
79 | - if (! isset(self::$memoizedMapData[$mapFileName])) { |
|
79 | + if (!isset(self::$memoizedMapData[$mapFileName])) { |
|
80 | 80 | self::$memoizedMapData[$mapFileName] = require $mapFileName; |
81 | 81 | } |
82 | 82 | return self::$memoizedMapData[$mapFileName]; |
@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | private function assertStaticMethodWasCalledWithParams($methodName, ...$expectedArgs) |
36 | 36 | { |
37 | - if (! isset(self::$staticMethodCalls[$methodName])) { |
|
37 | + if (!isset(self::$staticMethodCalls[$methodName])) { |
|
38 | 38 | $this->fail(sprintf('Static method "%s" was not called', $methodName)); |
39 | 39 | } |
40 | 40 | $message = 'Expected static method call arguments do not match'; |
@@ -47,8 +47,8 @@ |
||
47 | 47 | { |
48 | 48 | $infoTypeKeys = ['foo', 'bar']; |
49 | 49 | $source = [ |
50 | - ['foo' => 'BAZ', 'bar' => 2,], |
|
51 | - ['foo' => 'QUX', 'bar' => 3,], |
|
50 | + ['foo' => 'BAZ', 'bar' => 2, ], |
|
51 | + ['foo' => 'QUX', 'bar' => 3, ], |
|
52 | 52 | ]; |
53 | 53 | |
54 | 54 | /** @var CurrencyInfoKeys|\PHPUnit_Framework_MockObject_MockObject $stubCurrencyInfoKeys */ |