@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace ApiClients\Tools\TestUtilities; |
4 | 4 | |
@@ -34,13 +34,13 @@ discard block |
||
34 | 34 | { |
35 | 35 | parent::setUp(); |
36 | 36 | |
37 | - $this->baseTmpDir = sys_get_temp_dir() . |
|
38 | - DIRECTORY_SEPARATOR . |
|
39 | - 'php-api-clients-tests-' . |
|
40 | - uniqid() . |
|
37 | + $this->baseTmpDir = sys_get_temp_dir(). |
|
38 | + DIRECTORY_SEPARATOR. |
|
39 | + 'php-api-clients-tests-'. |
|
40 | + uniqid(). |
|
41 | 41 | DIRECTORY_SEPARATOR; |
42 | - $this->tmpDir = $this->baseTmpDir . |
|
43 | - uniqid() . |
|
42 | + $this->tmpDir = $this->baseTmpDir. |
|
43 | + uniqid(). |
|
44 | 44 | DIRECTORY_SEPARATOR; |
45 | 45 | ; |
46 | 46 |