PHP code example of tyesty / routing-annotation-reader
1. Go to this page and download the library: Download tyesty/routing-annotation-reader library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tyesty / routing-annotation-reader example snippets
namespace foobar\Controllers;
/**
* Your class documentation here...
*
* @BaseRoute /foobar
* @Middleware MyFirstMiddleware
*/
class FooController {
/**
* Your action documentation here
*
* @Route [GET] /test (testaction)
* @Route [GET] /alternative/test (testaction-alt)
*/
public function myTestAction(Request $request, Response $response): Response {
// do something cool ;-)
return $response;
}
/**
* Your action documentation here
*
* @Route [POST] /test (test-post-action)
* @Middleware MySecondMiddleware
*/
public function myTestPostAction(Request $request, Response $response): Response {
// do something cool ;-)
return $response;
}
}
itialize the reader with the base path to your controller classes
$reader = new tyesty\RoutingAnnotationReader\Reader(["src"]);
$reader->run();
print_r($reader->getRoutes());