@@ -15,7 +15,7 @@ |
||
| 15 | 15 | protected function defineDatabaseMigrations() |
| 16 | 16 | { |
| 17 | 17 | $this->loadLaravelMigrations(); |
| 18 | - $this->loadMigrationsFrom(__DIR__.'/../src/migrations'); |
|
| 18 | + $this->loadMigrationsFrom(__DIR__ . '/../src/migrations'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | protected function getPackageProviders($app): array |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | Storage::fake(config('clamavfileupload.disk')); |
| 24 | 24 | |
| 25 | 25 | $file = __DIR__ . '/file/lorem-ipsum.pdf'; |
| 26 | - if (! is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 26 | + if (!is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 27 | 27 | mkdir($tmpDir, 0755, true); |
| 28 | 28 | } |
| 29 | 29 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | Storage::fake(config('clamavfileupload.disk')); |
| 54 | 54 | |
| 55 | 55 | $file = __DIR__ . '/file/lorem-ipsum.pdf'; |
| 56 | - if (! is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 56 | + if (!is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 57 | 57 | mkdir($tmpDir, 0755, true); |
| 58 | 58 | } |
| 59 | 59 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | Storage::fake(config('clamavfileupload.disk')); |
| 91 | 91 | |
| 92 | 92 | $file = __DIR__ . '/file/lorem-ipsum.pdf'; |
| 93 | - if (! is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 93 | + if (!is_dir($tmpDir = __DIR__ . '/tmp')) { |
|
| 94 | 94 | mkdir($tmpDir, 0755, true); |
| 95 | 95 | } |
| 96 | 96 | |