| Total Complexity | 1 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class Route |
||
| 8 | { |
||
| 9 | public string $class; |
||
| 10 | |||
| 11 | public string $method; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Arguments. |
||
| 15 | * |
||
| 16 | * @var array<int,string> |
||
| 17 | */ |
||
| 18 | public array $arguments; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param array<int,string> $arguments |
||
| 22 | */ |
||
| 23 | public function __construct(string $class, string $method, array $arguments) |
||
| 30 |