| 1 | <?php | ||
| 13 | class TempFile extends File | ||
| 14 | { | ||
| 15 | private $doNotDestroy = false; | ||
| 16 | |||
| 17 | /** | ||
| 18 | * @param string $prefix | ||
| 19 | */ | ||
| 20 | 9 | public function __construct($prefix = '') | |
| 24 | |||
| 25 | /** | ||
| 26 | * Do not destroy the file on exit. | ||
| 27 | * | ||
| 28 | * @param bool $val | ||
| 29 | */ | ||
| 30 | 3 | public function doNotDestroy($val = true) | |
| 34 | |||
| 35 | /** | ||
| 36 | * The destructor | ||
| 37 | */ | ||
| 38 | 9 | public function __destruct() | |
| 46 | } |