1 | <?php |
||
10 | class OutputPath |
||
11 | { |
||
12 | /** @var string */ |
||
13 | private $path; |
||
14 | |||
15 | /** |
||
16 | * OutputPath constructor. |
||
17 | * @param string $path |
||
18 | */ |
||
19 | public function __construct(string $path) |
||
27 | |||
28 | public function isEmpty(): bool |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | * @throws \RuntimeException |
||
36 | */ |
||
37 | public function getPath(): string |
||
41 | } |
||
42 |