Test Failed
Push — main ( 680892...12263f )
by ikechukwu
12:25
created
Tests/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Tests/FileUploadTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.