@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | 'w-h-p-t-u-' . |
| 53 | 53 | uniqid() . |
| 54 | 54 | DIRECTORY_SEPARATOR; |
| 55 | - $this->tmpDir = $this->baseTmpDir . |
|
| 55 | + $this->tmpDir = $this->baseTmpDir . |
|
| 56 | 56 | uniqid() . |
| 57 | 57 | DIRECTORY_SEPARATOR; |
| 58 | 58 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | protected function tearDown(): void |
| 63 | 63 | { |
| 64 | - if (! file_exists($this->baseTmpDir)) { |
|
| 64 | + if (!file_exists($this->baseTmpDir)) { |
|
| 65 | 65 | return; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | final protected function getTmpDir(): string |
| 112 | 112 | { |
| 113 | - if (! file_exists($this->tmpDir)) { |
|
| 113 | + if (!file_exists($this->tmpDir)) { |
|
| 114 | 114 | mkdir($this->tmpDir, self::DEFAULT_MODE, true); |
| 115 | 115 | } |
| 116 | 116 | |
@@ -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 | |