@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | 'w-h-p-t-u-' . |
51 | 51 | uniqid() . |
52 | 52 | DIRECTORY_SEPARATOR; |
53 | - $this->tmpDir = $this->baseTmpDir . |
|
53 | + $this->tmpDir = $this->baseTmpDir . |
|
54 | 54 | uniqid() . |
55 | 55 | DIRECTORY_SEPARATOR; |
56 | 56 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | protected function tearDown(): void |
61 | 61 | { |
62 | - if (! file_exists($this->baseTmpDir)) { |
|
62 | + if (!file_exists($this->baseTmpDir)) { |
|
63 | 63 | return; |
64 | 64 | } |
65 | 65 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | continue; |
97 | 97 | } |
98 | 98 | |
99 | - if (! is_file($node->getPathname())) { |
|
99 | + if (!is_file($node->getPathname())) { |
|
100 | 100 | continue; |
101 | 101 | } |
102 | 102 | |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | |
113 | 113 | final protected function getTmpDir(): string |
114 | 114 | { |
115 | - if (! file_exists($this->tmpDir)) { |
|
115 | + if (!file_exists($this->tmpDir)) { |
|
116 | 116 | if (@mkdir($this->tmpDir, self::DEFAULT_MODE, true) !== true) { |
117 | 117 | throw ErrorExceptionFactory::create('Error creating directory: ' . $this->tmpDir); |
118 | 118 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | $directory = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)); |
136 | 136 | |
137 | 137 | foreach ($directory as $node) { |
138 | - if (! is_file($node->getPathname())) { |
|
138 | + if (!is_file($node->getPathname())) { |
|
139 | 139 | continue; |
140 | 140 | } |
141 | 141 |