| 1 | <?php |
||
| 10 | class UrlRewriterPlugin implements Plugin |
||
| 11 | { |
||
| 12 | const SERVICE_NAME = 'urlRewriter'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Apply Plugin's services to the existing Container |
||
| 16 | * |
||
| 17 | * @param Container $container App's Services Container |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function loadServices(Container $container) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Returns a list of Actions for this plugin |
||
| 32 | * |
||
| 33 | * @param Application $app The running Application |
||
| 34 | * |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function load(Application $app) |
||
| 41 | } |