@@ -57,6 +57,10 @@ |
||
57 | 57 | } |
58 | 58 | } |
59 | 59 | |
60 | + /** |
|
61 | + * @param string $src |
|
62 | + * @param string $dst |
|
63 | + */ |
|
60 | 64 | protected function copyRecursively($src, $dst) |
61 | 65 | { |
62 | 66 | $dir = opendir($src); |
@@ -21,7 +21,6 @@ |
||
21 | 21 | /** |
22 | 22 | * Manufacturs datasource drivers. |
23 | 23 | * |
24 | - * @param string $key |
|
25 | 24 | * |
26 | 25 | * @return object |
27 | 26 | * |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @param array $options |
39 | 39 | * |
40 | - * @return void |
|
40 | + * @return HandlerInterface |
|
41 | 41 | */ |
42 | 42 | public function __construct(array $options = array()) |
43 | 43 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | /** |
64 | 64 | * Get the log file path |
65 | 65 | * |
66 | - * @return mixed |
|
66 | + * @return string |
|
67 | 67 | */ |
68 | 68 | private function getLogFile() |
69 | 69 | { |
@@ -458,7 +458,7 @@ |
||
458 | 458 | * Get an option from the controller. |
459 | 459 | * |
460 | 460 | * @param string $option The option name |
461 | - * @param null $default The default value if the option does not exist |
|
461 | + * @param string $default The default value if the option does not exist |
|
462 | 462 | * |
463 | 463 | * @return mixed |
464 | 464 | */ |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * Constructor. |
25 | 25 | * |
26 | 26 | * @param RequestContext $requestContext |
27 | - * @param type $collection |
|
27 | + * @param \Symfony\Component\Routing\RouteCollection $collection |
|
28 | 28 | * @param array $options |
29 | 29 | * |
30 | 30 | * @return void |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | /** |
42 | 42 | * Set the route collection |
43 | 43 | * |
44 | - * @param type $collection |
|
44 | + * @param \Symfony\Component\Routing\RouteCollection $collection |
|
45 | 45 | * |
46 | 46 | * @return void |
47 | 47 | */ |
@@ -69,7 +69,6 @@ |
||
69 | 69 | * |
70 | 70 | * This method is an alias to $this->get(). |
71 | 71 | * |
72 | - * @param string $cName |
|
73 | 72 | * @param boolean $usePeeringServiceManagers |
74 | 73 | * |
75 | 74 | * @return object|array |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | /** |
29 | 29 | * Constructor. |
30 | 30 | * |
31 | - * @param Mustache_Engine $mustache A \Mustache_Engine instance |
|
31 | + * @param \Mustache_Engine $mustache A \Mustache_Engine instance |
|
32 | 32 | * @param TemplateNameParserInterface $parser A TemplateNameParserInterface instance |
33 | 33 | */ |
34 | 34 | public function __construct(\Mustache_Engine $mustache, TemplateNameParserInterface $parser) |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * Renders a template. |
42 | 42 | * |
43 | - * @param mixed $name A template name |
|
43 | + * @param string $name A template name |
|
44 | 44 | * @param array $parameters An array of parameters to pass to the template |
45 | 45 | * |
46 | 46 | * @return string The evaluated template as a string |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @param FileLocatorInterface $locator A FileLocatorInterface instance |
37 | 37 | * |
38 | - * @return void |
|
38 | + * @return LoaderInterface |
|
39 | 39 | */ |
40 | 40 | public function __construct(FileLocatorInterface $locator) |
41 | 41 | { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * @param TemplateReferenceInterface $template The template name as an array |
68 | 68 | * @param integer $time The last modification time of the cached template (timestamp) |
69 | 69 | * |
70 | - * @return integer|boolean |
|
70 | + * @return boolean |
|
71 | 71 | */ |
72 | 72 | public function isFresh(TemplateReferenceInterface $template, $time) |
73 | 73 | { |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * |
44 | 44 | * @param AssetsHelper $assetsHelper |
45 | 45 | * |
46 | - * @return void |
|
46 | + * @return \NoiseLabs\Bundle\SmartyBundle\Extension\ExtensionInterface |
|
47 | 47 | */ |
48 | 48 | public function __construct(AssetsHelper $assetsHelper) |
49 | 49 | { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @param array $parameters |
131 | 131 | * @param \Smarty_Internal_Template $template |
132 | 132 | * |
133 | - * @return integer |
|
133 | + * @return string |
|
134 | 134 | */ |
135 | 135 | public function getAssetsVersion(array $parameters = array(), \Smarty_Internal_Template $template) |
136 | 136 | { |