Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | final class Pharaoh extends ParagoniePharaoh |
||
22 | { |
||
23 | private $fileName; |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function __construct(string $file, ?string $alias = null) |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function __destruct() |
||
39 | { |
||
40 | parent::__destruct(); |
||
41 | |||
42 | remove($this->tmp); |
||
43 | } |
||
44 | |||
45 | public function getFileName(): string |
||
48 | } |
||
49 | } |
||
50 |