@@ -18,7 +18,7 @@ |
||
18 | 18 | * returns the number of years of the education or work experience |
19 | 19 | * |
20 | 20 | * @param array $array |
21 | - * @return string |
|
21 | + * @return double |
|
22 | 22 | */ |
23 | 23 | public function __invoke($array) |
24 | 24 | { |
@@ -165,7 +165,6 @@ discard block |
||
165 | 165 | * |
166 | 166 | * parameter are arbitrary elements for defaults or programming flow |
167 | 167 | * |
168 | - * @param array $parameter |
|
169 | 168 | * @return null|ViewModel |
170 | 169 | * @throws \RuntimeException |
171 | 170 | */ |
@@ -388,7 +387,7 @@ discard block |
||
388 | 387 | |
389 | 388 | /** |
390 | 389 | * @param $job \Jobs\Entity\Job |
391 | - * @return mixed |
|
390 | + * @return \Jobs\Form\Job |
|
392 | 391 | */ |
393 | 392 | protected function getFormular($job) |
394 | 393 | { |
@@ -411,7 +410,7 @@ discard block |
||
411 | 410 | } |
412 | 411 | |
413 | 412 | /** |
414 | - * @param $form |
|
413 | + * @param \Jobs\Form\Job $form |
|
415 | 414 | * @param array $params |
416 | 415 | * @return ViewModel |
417 | 416 | */ |
@@ -604,7 +603,7 @@ discard block |
||
604 | 603 | } |
605 | 604 | |
606 | 605 | /** |
607 | - * @param $script |
|
606 | + * @param string $script |
|
608 | 607 | * @param array $parameter |
609 | 608 | * @return ViewModel |
610 | 609 | */ |
@@ -65,7 +65,7 @@ |
||
65 | 65 | * |
66 | 66 | * @param MvcEvent $event |
67 | 67 | * |
68 | - * @return null|\Zend\Http\PhpEnvironment\Response |
|
68 | + * @return null|\Zend\Stdlib\ResponseInterface |
|
69 | 69 | * @throws \UnexpectedValueException |
70 | 70 | */ |
71 | 71 | public function onRoute(MvcEvent $event) |
@@ -59,7 +59,7 @@ |
||
59 | 59 | * @param array $images |
60 | 60 | * @param PermissionsInterface $permissions |
61 | 61 | * |
62 | - * @return mixed |
|
62 | + * @return ImageSet |
|
63 | 63 | */ |
64 | 64 | public function setImages(array $images, PermissionsInterface $permissions = null); |
65 | 65 |
@@ -46,7 +46,6 @@ |
||
46 | 46 | * Converts the given value so that it can be hydrated by the hydrator. |
47 | 47 | * |
48 | 48 | * @param mixed $value The original value. |
49 | - * @param array $data (optional) The original data for context. |
|
50 | 49 | * |
51 | 50 | * @return mixed Returns the value that should be hydrated. |
52 | 51 | */ |
@@ -103,7 +103,7 @@ |
||
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
106 | - * @return mixed |
|
106 | + * @return string |
|
107 | 107 | */ |
108 | 108 | protected function getJobTitle() |
109 | 109 | { |
@@ -69,6 +69,9 @@ |
||
69 | 69 | return $this; |
70 | 70 | } |
71 | 71 | |
72 | + /** |
|
73 | + * @param string $network |
|
74 | + */ |
|
72 | 75 | public function getAdapter($network) |
73 | 76 | { |
74 | 77 | if (isset($this->adapters[$network])) { |
@@ -29,7 +29,6 @@ |
||
29 | 29 | {} |
30 | 30 | |
31 | 31 | /** |
32 | - * @param string $network |
|
33 | 32 | * @return \Auth\Entity\SocialProfiles\ProfileInterface|bool |
34 | 33 | */ |
35 | 34 | public function fetch($api) |
@@ -38,6 +38,9 @@ discard block |
||
38 | 38 | protected $country; |
39 | 39 | |
40 | 40 | |
41 | + /** |
|
42 | + * @param string $uri |
|
43 | + */ |
|
41 | 44 | public function __construct($uri, $country="DE", $cache = false) |
42 | 45 | { |
43 | 46 | $this->country = $country; |
@@ -92,6 +95,9 @@ discard block |
||
92 | 95 | return isset($result[0]) ? $result[0] : false; |
93 | 96 | } |
94 | 97 | |
98 | + /** |
|
99 | + * @param string $result |
|
100 | + */ |
|
95 | 101 | protected function processResult($result) |
96 | 102 | { |
97 | 103 | return $result; |