| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function __construct($baseTempDir = null) |
||
| 18 | { |
||
| 19 | if (null === $baseTempDir) { |
||
| 20 | $baseTempDir = realpath(sys_get_temp_dir()); |
||
| 21 | } |
||
| 22 | |||
| 23 | $this->tempDir = $baseTempDir.DIRECTORY_SEPARATOR.self::TEMP_DIR_PREFIX; |
||
| 24 | |||
| 25 | if (!is_dir($this->tempDir)) { |
||
| 26 | mkdir($this->tempDir, 0777, true); |
||
| 27 | } |
||
| 28 | } |
||
| 29 | } |
||
| 30 |