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