Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
22 | 14 | public function __construct() |
|
23 | { |
||
24 | 14 | $this->filePath = sys_get_temp_dir() . DIRECTORY_SEPARATOR . uniqid(null, 1) . '.xml'; |
|
25 | 14 | if (!$this->filePointer = fopen($this->filePath, 'wb+')) { |
|
26 | throw new \RuntimeException("Failed to create temporary sheet file {$this->filePath}!"); |
||
27 | } |
||
28 | 14 | } |
|
29 | |||
79 |