| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 24 | protected function setUp() |
||
| 25 | { |
||
| 26 | $this->filesystem = new Filesystem(); |
||
| 27 | $this->workspace = rtrim(sys_get_temp_dir(), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.time().mt_rand(0, 1000); |
||
| 28 | |||
| 29 | mkdir($this->workspace, 0777, true); |
||
| 30 | |||
| 31 | $this->workspace = realpath($this->workspace); |
||
| 32 | } |
||
| 33 | |||
| 61 |