| 12345678910111213141516 |
- <?php
- namespace Test\Michel\Controller;
- use Michel\Attribute\Route;
- use Michel\Attribute\ControllerRoute;
- #[ControllerRoute('/api', format: 'json')]
- class PingController
- {
- #[Route('ping', name: 'ping', methods: ['GET'])]
- public function ping(): string
- {
- return json_encode(['pong' => true]);
- }
- }
|