@@ -104,7 +104,6 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | /** |
| 106 | 106 | * @param $name |
| 107 | - * @param array $params |
|
| 108 | 107 | * |
| 109 | 108 | * @return string |
| 110 | 109 | */ |
@@ -115,6 +114,7 @@ discard block |
||
| 115 | 114 | |
| 116 | 115 | /** |
| 117 | 116 | * @When /^I hover over the element "([^"]*)"$/ |
| 117 | + * @param string $locator |
|
| 118 | 118 | */ |
| 119 | 119 | public function iHoverOverTheElement($locator) |
| 120 | 120 | { |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | /** |
| 262 | - * @param $locator |
|
| 262 | + * @param string $locator |
|
| 263 | 263 | * @param string $selector |
| 264 | 264 | * |
| 265 | 265 | * @return \Behat\Mink\Element\NodeElement|mixed|null |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | /** |
| 37 | 37 | * Get required modules for Yawik |
| 38 | 38 | * |
| 39 | - * @return array |
|
| 39 | + * @return string[] |
|
| 40 | 40 | */ |
| 41 | 41 | public static function getRequiredModules() |
| 42 | 42 | { |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | |
| 173 | 173 | /** |
| 174 | 174 | * Setup php server |
| 175 | - * @return bool |
|
| 175 | + * @return null|boolean |
|
| 176 | 176 | * @codeCoverageIgnore |
| 177 | 177 | */ |
| 178 | 178 | private static function setupCliServerEnv() |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | /** |
| 45 | 45 | * Get required modules for Yawik |
| 46 | 46 | * |
| 47 | - * @return array |
|
| 47 | + * @return string[] |
|
| 48 | 48 | */ |
| 49 | 49 | public static function getRequiredModules() |
| 50 | 50 | { |
@@ -89,7 +89,6 @@ discard block |
||
| 89 | 89 | * Run application |
| 90 | 90 | * @param mixed|array $appConfig |
| 91 | 91 | * |
| 92 | - * @param bool $run |
|
| 93 | 92 | * @return bool|ZendApplication |
| 94 | 93 | */ |
| 95 | 94 | public static function initApplication($appConfig = null) |
@@ -54,7 +54,7 @@ |
||
| 54 | 54 | $parameter_instances[] = $container->get($cn); |
| 55 | 55 | } catch (\Exception $x) { |
| 56 | 56 | echo __CLASS__ |
| 57 | - . " couldn't create an instance of $cn to satisfy the constructor for $requestedName."; |
|
| 57 | + . " couldn't create an instance of $cn to satisfy the constructor for $requestedName."; |
|
| 58 | 58 | exit; |
| 59 | 59 | } |
| 60 | 60 | } else { |
@@ -61,8 +61,8 @@ |
||
| 61 | 61 | $routeMatch->setParam('action', $p); |
| 62 | 62 | $response = $this->getResponse(); |
| 63 | 63 | $response->getHeaders() |
| 64 | - ->addHeaderLine('Content-Type', 'application/json') |
|
| 65 | - ->addHeaderLine('Content-Encoding', 'utf8'); |
|
| 64 | + ->addHeaderLine('Content-Type', 'application/json') |
|
| 65 | + ->addHeaderLine('Content-Encoding', 'utf8'); |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | |