1 | <?php |
||
14 | class IO |
||
15 | { |
||
16 | /** @var string */ |
||
17 | protected $file; |
||
18 | |||
19 | /** |
||
20 | * Create a new IO instance. |
||
21 | * |
||
22 | * @param string $file |
||
23 | */ |
||
24 | public function __construct(string $file) |
||
28 | |||
29 | public function getFileName(): string |
||
36 | |||
37 | public function getFileExtensionName(): string |
||
44 | |||
45 | public function getOriginalRoute(): string |
||
49 | } |
||
50 |