Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
15 | 7 | public function __construct(string $dir = '', string $prefix = '', bool $deleteOnDestruct = true) |
|
16 | { |
||
17 | 7 | $this->deleteOnDestruct = $deleteOnDestruct; |
|
18 | 7 | $this->filename = (string) tempnam($dir, $prefix); |
|
19 | 7 | if ('' === $this->filename) { |
|
20 | throw new \RuntimeException('Cannot create the temporary filename'); |
||
21 | } |
||
58 |