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