1 | <?php |
||
10 | class RoutingHelper implements HelperInterface |
||
11 | { |
||
12 | private $generator; |
||
13 | private $type; |
||
14 | |||
15 | public function __construct(UrlGeneratorInterface $generator, $type) |
||
20 | |||
21 | public function handle($context, $options) |
||
27 | |||
28 | private function getPath($name, $parameters = array(), $relative = false) |
||
32 | |||
33 | private function getUrl($name, $parameters = array(), $schemeRelative = false) |
||
37 | } |
||
38 |