| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class UserRegistrationController extends AbstractController |
||
| 20 | { |
||
| 21 | public function __construct( |
||
| 22 | protected readonly Context $context, |
||
| 23 | ) { |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Shows a list of all registration of the current frontend user |
||
| 28 | */ |
||
| 29 | public function listAction(): ResponseInterface |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Shows a detail page for the given registration |
||
| 41 | */ |
||
| 42 | public function detailAction(Registration $registration): ResponseInterface |
||
| 48 | } |
||
| 49 | } |
||
| 50 |