PHP code example of skyline / route-annotation-compiler

1. Go to this page and download the library: Download skyline/route-annotation-compiler 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/ */

    

skyline / route-annotation-compiler example snippets


class MyActionController extends AbstractActionController {
    /**
     * My first action
     * 
     * @route literal /direct-uri-to-this-action 
     * @route regex %^/my\-(1|2|3)\-action$%i 
     *
     * @render html-render
     */
    public function myAction() {
        // ...
    }
}