1 | <?php |
||
11 | class Url implements HandlerInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var \Symfony\Component\HttpFoundation\RequestStack |
||
15 | */ |
||
16 | protected $requestStack; |
||
17 | |||
18 | public function __construct(RequestStack $requestStack) |
||
22 | |||
23 | /** |
||
24 | * Returns the array of meta tags. |
||
25 | * |
||
26 | * @param string $tagName |
||
27 | * @param array $params |
||
28 | * |
||
29 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException If number of params is incorrect |
||
30 | * |
||
31 | * @return \Netgen\Bundle\OpenGraphBundle\MetaTag\Item[] |
||
32 | */ |
||
33 | public function getMetaTags($tagName, array $params = array()) |
||
56 | } |
||
57 |