@@ -109,7 +109,7 @@ |
||
| 109 | 109 | /** |
| 110 | 110 | * @param string $parameter |
| 111 | 111 | * @param mixed $defaultValue |
| 112 | - * @return mixed |
|
| 112 | + * @return double |
|
| 113 | 113 | */ |
| 114 | 114 | private function getValue($parameter, $defaultValue = null) |
| 115 | 115 | { |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | /** |
| 90 | - * @param $url |
|
| 90 | + * @param string $url |
|
| 91 | 91 | * @param $apiKey |
| 92 | 92 | */ |
| 93 | 93 | private function setPollUrl($url, $apiKey) |
@@ -9,6 +9,9 @@ |
||
| 9 | 9 | |
| 10 | 10 | interface NotifiableInterface |
| 11 | 11 | { |
| 12 | + /** |
|
| 13 | + * @return void |
|
| 14 | + */ |
|
| 12 | 15 | public function notify(array $deals, SessionParameters $sessionParameters); |
| 13 | 16 | |
| 14 | 17 | public function createNotification(array $deals, SessionParameters $parameters); |
@@ -8,13 +8,14 @@ |
||
| 8 | 8 | interface ValidatorInterface |
| 9 | 9 | { |
| 10 | 10 | /** |
| 11 | - * @param $instance |
|
| 11 | + * @param \Symfony\Component\Console\Input\InputInterface $instance |
|
| 12 | 12 | * @return $this |
| 13 | 13 | */ |
| 14 | 14 | public function setTarget($instance); |
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | 17 | * @throw ValidationException |
| 18 | + * @return void |
|
| 18 | 19 | */ |
| 19 | 20 | public function validate(); |
| 20 | 21 | } |