diff options
| author | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:32 +0100 |
|---|---|---|
| committer | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:32 +0100 |
| commit | bbb017512587047ea016e9445bb5693c8c3c8065 (patch) | |
| tree | 76ab2522fdec0b9b33f6e5d7c6817df46d795688 /src/GroupDefinition.php | |
| parent | b899a995e2fd977fbf7497b36b2dbc8d641ef398 (diff) | |
Started structure for group definition
Diffstat (limited to 'src/GroupDefinition.php')
| -rw-r--r-- | src/GroupDefinition.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/GroupDefinition.php b/src/GroupDefinition.php new file mode 100644 index 0000000..444ba91 --- /dev/null +++ b/src/GroupDefinition.php @@ -0,0 +1,13 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router; + +class GroupDefinition +{ + public function __construct( + private Router $router, + ) { + } +} |
