1 | <?php |
||
10 | class OutputFile |
||
11 | { |
||
12 | /** @var string */ |
||
13 | private $filePath; |
||
14 | |||
15 | /** |
||
16 | * OutputPath constructor. |
||
17 | * @param string $filePath |
||
18 | */ |
||
19 | public function __construct($filePath) |
||
25 | |||
26 | public function isEmpty(): bool |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | * @throws \RuntimeException |
||
34 | */ |
||
35 | public function getFilePath(): string |
||
43 | } |
||
44 |