@@ -28,7 +28,7 @@ |
||
28 | 28 | |
29 | 29 | public function __construct() |
30 | 30 | { |
31 | - $this->isFlushable = function ($obj) { |
|
31 | + $this->isFlushable = function($obj) { |
|
32 | 32 | if (!is_array($obj) && !($obj instanceof ArrayAccess)) { |
33 | 33 | throw new InvalidArgumentException("isFlushable requires an array or \ArrayAccess, received object is not: %s", get_class($obj)); |
34 | 34 | } |
@@ -272,7 +272,7 @@ |
||
272 | 272 | { |
273 | 273 | $this->sut = new Uploader($this->filesystemMock); |
274 | 274 | |
275 | - $fooPathFactory = function ($filename) { |
|
275 | + $fooPathFactory = function($filename) { |
|
276 | 276 | return "/foo-base-dir/$filename"; |
277 | 277 | }; |
278 | 278 |