| 1 | <?php |
||
| 20 | class FilePath |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string file_path |
||
| 25 | */ |
||
| 26 | private $file_path; |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * FilePath constructor. |
||
| 31 | * |
||
| 32 | * @param string $file_path |
||
| 33 | * @throws InvalidDataTypeException |
||
| 34 | * @throws InvalidFilePathException |
||
| 35 | */ |
||
| 36 | public function __construct($file_path) |
||
| 50 | |||
| 51 | |||
| 52 | /** |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public function __toString() |
||
| 59 | |||
| 60 | |||
| 61 | } |
||
| 62 |