1 | <?php |
||
8 | final class ResMeta |
||
9 | { |
||
10 | /** |
||
11 | * URI path |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | public $uriPath; |
||
16 | |||
17 | /** |
||
18 | * Class name |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | public $class; |
||
23 | |||
24 | /** |
||
25 | * File path |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | public $filePath; |
||
30 | |||
31 | public function __construct(string $uriPath, string $class, string $filePath) |
||
37 | } |
||
38 |