@@ -82,18 +82,18 @@ |
||
| 82 | 82 | $this->expectException(GenericFileException::class); |
| 83 | 83 | |
| 84 | 84 | $fileDirectory = '/'; |
| 85 | - $filePath = $fileDirectory . str_repeat('a', 251); |
|
| 85 | + $filePath = $fileDirectory.str_repeat('a', 251); |
|
| 86 | 86 | |
| 87 | 87 | $userFolder = $this->createMock(Folder::class); |
| 88 | 88 | $userFolder->method('get') |
| 89 | - ->willReturnCallback(function ($path) use ($filePath, $fileDirectory) { |
|
| 89 | + ->willReturnCallback(function($path) use ($filePath, $fileDirectory) { |
|
| 90 | 90 | if ($path === $filePath) { |
| 91 | 91 | throw new NotFoundException(); |
| 92 | 92 | } |
| 93 | 93 | return $this->createMock(Folder::class); |
| 94 | 94 | }); |
| 95 | 95 | $userFolder->method('nodeExists') |
| 96 | - ->willReturnCallback(function ($path) use ($filePath, $fileDirectory) { |
|
| 96 | + ->willReturnCallback(function($path) use ($filePath, $fileDirectory) { |
|
| 97 | 97 | return $path === $fileDirectory; |
| 98 | 98 | }); |
| 99 | 99 | $this->rootFolder->method('getUserFolder') |