1 | <?php |
||
32 | trait AddRouteTrait |
||
33 | { |
||
34 | /** |
||
35 | * {@inheritDoc} |
||
36 | */ |
||
37 | abstract public function addRoute(RouteInterface $route); |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function loadRoutes(array $routes) |
||
52 | |||
53 | /** |
||
54 | * {@inheritDoc} |
||
55 | */ |
||
56 | public function addGet( |
||
65 | |||
66 | /** |
||
67 | * {@inheritDoc} |
||
68 | */ |
||
69 | public function addPost( |
||
78 | } |
||
79 |