| 1 | <?php declare(strict_types = 1); |
||
| 5 | class ConfigFile |
||
| 6 | { |
||
| 7 | /** @var string */ |
||
| 8 | private $path; |
||
| 9 | |||
| 10 | /** @var string */ |
||
| 11 | private $type; |
||
| 12 | |||
| 13 | private function __construct(string $path, string $type) |
||
| 18 | |||
| 19 | public static function record(string $path, string $type) |
||
| 24 | |||
| 25 | public function getPath(): string |
||
| 29 | |||
| 30 | public function getType(): string |
||
| 34 | } |
||
| 35 |