@@ -71,6 +71,9 @@ |
||
71 | 71 | return 'Route for media '.$name->getValues()->getId().' not found'; |
72 | 72 | } |
73 | 73 | |
74 | + /** |
|
75 | + * @param string $name |
|
76 | + */ |
|
74 | 77 | private function getItem($name) |
75 | 78 | { |
76 | 79 | $values = $name->getValues(); |
@@ -75,6 +75,9 @@ discard block |
||
75 | 75 | */ |
76 | 76 | private $configurationCache = []; |
77 | 77 | |
78 | + /** |
|
79 | + * @param string $configsPath |
|
80 | + */ |
|
78 | 81 | public function __construct(EventDispatcherInterface $dispatcher, Cache $metadataCache, $configsPath = null) |
79 | 82 | { |
80 | 83 | $this->metadataCache = $metadataCache; |
@@ -175,6 +178,9 @@ discard block |
||
175 | 178 | return new Meta($this, $value, $this->getConfigurationForValue($value)); |
176 | 179 | } |
177 | 180 | |
181 | + /** |
|
182 | + * @return boolean |
|
183 | + */ |
|
178 | 184 | public function isSupported($value) |
179 | 185 | { |
180 | 186 | if (!is_object($value)) { |
@@ -312,7 +318,7 @@ discard block |
||
312 | 318 | } |
313 | 319 | |
314 | 320 | /** |
315 | - * @param array $keys |
|
321 | + * @param string[] $keys |
|
316 | 322 | * |
317 | 323 | * @return string |
318 | 324 | */ |
@@ -344,7 +350,7 @@ discard block |
||
344 | 350 | /** |
345 | 351 | * @param string $id |
346 | 352 | * |
347 | - * @return null|true |
|
353 | + * @return null|boolean |
|
348 | 354 | */ |
349 | 355 | public function restoreTemporaryUnset($id) |
350 | 356 | { |
@@ -43,7 +43,7 @@ |
||
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
46 | - * @return array|\Twig_TokenParserInterface[] |
|
46 | + * @return ContainerTokenParser[] |
|
47 | 47 | */ |
48 | 48 | public function getTokenParsers() |
49 | 49 | { |
@@ -71,7 +71,7 @@ |
||
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
74 | - * @return array |
|
74 | + * @return \Twig_SimpleFilter[] |
|
75 | 75 | */ |
76 | 76 | public function getFilters() |
77 | 77 | { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | * @param \Twig_Node_Expression|null $parameters |
27 | 27 | * @param \Twig_Node $body |
28 | 28 | * @param null|string $lineno |
29 | - * @param null $tag |
|
29 | + * @param string $tag |
|
30 | 30 | */ |
31 | 31 | public function __construct(\Twig_Node $name, \Twig_Node_Expression $parameters = null, \Twig_Node $body, $lineno, $tag = null) |
32 | 32 | { |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * @param \Twig_Node|null $else |
37 | 37 | * @param \Twig_Node $body |
38 | 38 | * @param int $lineno |
39 | - * @param null $tag |
|
39 | + * @param string $tag |
|
40 | 40 | */ |
41 | 41 | public function __construct( |
42 | 42 | \Twig_Node $variable, |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * @param \Twig_Node_Expression|null $ignoreContext |
30 | 30 | * @param \Twig_Node $body |
31 | 31 | * @param int $lineno |
32 | - * @param null $tag |
|
32 | + * @param string $tag |
|
33 | 33 | */ |
34 | 34 | public function __construct( |
35 | 35 | \Twig_Node $annotation, |