| 1 | <?php namespace Limoncello\Core\Routing; |
||
| 24 | class NestedGroup extends BaseGroup |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @param GroupInterface $parent |
||
| 28 | */ |
||
| 29 | 15 | public function __construct(GroupInterface $parent) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | 8 | public function getName(): ?string |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return BaseGroup |
||
| 48 | */ |
||
| 49 | 2 | protected function createGroup(): BaseGroup |
|
| 55 | } |
||
| 56 |