Passed
Push — master ( a36b47...022fca )
by Caen
09:56 queued 03:14
created
packages/testing/src/TestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         parent::setUp();
35 35
 
36
-        if (! static::$booted) {
36
+        if (!static::$booted) {
37 37
             $this->resetApplication();
38 38
 
39 39
             static::$booted = true;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                 if (Filesystem::isDirectory($file)) {
130 130
                     $dontDelete = ['_site', '_media', '_pages', '_posts', '_docs', 'app', 'config', 'storage', 'vendor', 'node_modules'];
131 131
 
132
-                    if (! in_array($file, $dontDelete)) {
132
+                    if (!in_array($file, $dontDelete)) {
133 133
                         Filesystem::deleteDirectory($file);
134 134
                     }
135 135
                 } else {
Please login to merge, or discard this patch.
packages/testing/src/helpers.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 use Illuminate\Support\Facades\File;
4 4
 
5
-if (! function_exists('unlinkIfExists')) {
5
+if (!function_exists('unlinkIfExists')) {
6 6
     function unlinkIfExists(string $filepath): void
7 7
     {
8 8
         if (file_exists($filepath)) {
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     }
12 12
 }
13 13
 
14
-if (! function_exists('backupDirectory')) {
14
+if (!function_exists('backupDirectory')) {
15 15
     function backupDirectory(string $directory): void
16 16
     {
17 17
         if (file_exists($directory)) {
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     }
21 21
 }
22 22
 
23
-if (! function_exists('restoreDirectory')) {
23
+if (!function_exists('restoreDirectory')) {
24 24
     function restoreDirectory(string $directory): void
25 25
     {
26 26
         if (file_exists($directory.'-bak')) {
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 }
32 32
 
33
-if (! function_exists('deleteDirectory')) {
33
+if (!function_exists('deleteDirectory')) {
34 34
     function deleteDirectory(string $directory): void
35 35
     {
36 36
         if (file_exists($directory)) {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     }
40 40
 }
41 41
 
42
-if (! function_exists('makeDirectory')) {
42
+if (!function_exists('makeDirectory')) {
43 43
     function makeDirectory(string $directory): void
44 44
     {
45 45
         if (file_exists($directory)) {
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
 }
50 50
 
51
-if (! function_exists('unlinkUnlessDefault')) {
51
+if (!function_exists('unlinkUnlessDefault')) {
52 52
     function unlinkUnlessDefault(string $filepath): void
53 53
     {
54 54
         $protected = [
@@ -58,13 +58,13 @@  discard block
 block discarded – undo
58 58
             '.gitkeep',
59 59
         ];
60 60
 
61
-        if (! in_array(basename($filepath), $protected)) {
61
+        if (!in_array(basename($filepath), $protected)) {
62 62
             unlink($filepath);
63 63
         }
64 64
     }
65 65
 }
66 66
 
67
-if (! function_exists('strip_newlines')) {
67
+if (!function_exists('strip_newlines')) {
68 68
     function strip_newlines(string $string, bool $keepUnixEndings = false): string
69 69
     {
70 70
         if ($keepUnixEndings) {
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     }
76 76
 }
77 77
 
78
-if (! function_exists('strip_indentation')) {
78
+if (!function_exists('strip_indentation')) {
79 79
     function strip_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string
80 80
     {
81 81
         $indentation = $indentUsingSpaces ? str_repeat(' ', $indentationLength) : "\t";
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     }
85 85
 }
86 86
 
87
-if (! function_exists('strip_newlines_and_indentation')) {
87
+if (!function_exists('strip_newlines_and_indentation')) {
88 88
     function strip_newlines_and_indentation(string $string, bool $indentUsingSpaces = true, int $indentationLength = 4): string
89 89
     {
90 90
         return strip_newlines(strip_indentation($string, $indentUsingSpaces, $indentationLength));
Please login to merge, or discard this patch.