@@ -54,7 +54,7 @@ |
||
54 | 54 | * @param $auth AuthenticationService |
55 | 55 | * @param $logger LoggerInterface |
56 | 56 | * @param $forms |
57 | - * @param $options ModuleOptions |
|
57 | + * @param ModuleOptions $options ModuleOptions |
|
58 | 58 | */ |
59 | 59 | public function __construct(AuthenticationService $auth, LoggerInterface $logger,array $forms, $options) |
60 | 60 | { |
@@ -70,7 +70,7 @@ |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
73 | - * @return bool |
|
73 | + * @return string |
|
74 | 74 | */ |
75 | 75 | public function getMode() |
76 | 76 | { |
@@ -91,7 +91,7 @@ |
||
91 | 91 | /** |
92 | 92 | * Look for an drafted Document of a given user |
93 | 93 | * |
94 | - * @param $user |
|
94 | + * @param \Auth\Entity\AnonymousUser $user |
|
95 | 95 | * @return \Jobs\Entity\Job|null |
96 | 96 | */ |
97 | 97 | public function findDraft($user) |
@@ -155,8 +155,8 @@ |
||
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
158 | - * @param null $resource |
|
159 | - * @param null $privilege |
|
158 | + * @param null|string $resource |
|
159 | + * @param null|string $privilege |
|
160 | 160 | * @param string $mode |
161 | 161 | * @return $this|bool |
162 | 162 | */ |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
67 | - * @return $this|void |
|
67 | + * @return ManageController |
|
68 | 68 | */ |
69 | 69 | public function attachDefaultListeners() |
70 | 70 | { |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * @TODO edit-Action and save-Action are doing the same, one of them has to quit |
109 | 109 | * |
110 | - * @return null|ViewModel |
|
110 | + * @return ViewModel |
|
111 | 111 | */ |
112 | 112 | public function editAction() |
113 | 113 | { |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
124 | - * @return null|ViewModel |
|
124 | + * @return ViewModel |
|
125 | 125 | */ |
126 | 126 | public function saveAction() |
127 | 127 | { |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | * parameter are arbitrary elements for defaults or programming flow |
137 | 137 | * |
138 | 138 | * @param array $parameter |
139 | - * @return null|ViewModel |
|
139 | + * @return ViewModel |
|
140 | 140 | * @throws \RuntimeException |
141 | 141 | */ |
142 | 142 | protected function save($parameter = array()) |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | |
345 | 345 | /** |
346 | 346 | * @param $job |
347 | - * @return mixed |
|
347 | + * @return \Jobs\Form\Job |
|
348 | 348 | */ |
349 | 349 | protected function getFormular($job) |
350 | 350 | { |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | } |
366 | 366 | |
367 | 367 | /** |
368 | - * @param $form |
|
368 | + * @param \Jobs\Form\Job $form |
|
369 | 369 | * @param array $params |
370 | 370 | * @return ViewModel |
371 | 371 | */ |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | /** |
502 | 502 | * Deactivate a job posting |
503 | 503 | * |
504 | - * @return null|ViewModel |
|
504 | + * @return ViewModel |
|
505 | 505 | */ |
506 | 506 | public function deactivateAction() |
507 | 507 | { |
@@ -538,7 +538,7 @@ discard block |
||
538 | 538 | } |
539 | 539 | |
540 | 540 | /** |
541 | - * @param $script |
|
541 | + * @param string $script |
|
542 | 542 | * @param array $parameter |
543 | 543 | * @return ViewModel |
544 | 544 | */ |
@@ -81,7 +81,7 @@ |
||
81 | 81 | } |
82 | 82 | |
83 | 83 | /** |
84 | - * @param $property |
|
84 | + * @param string|null $property |
|
85 | 85 | * |
86 | 86 | * @return null |
87 | 87 | */ |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * Creates an instance of MailForgotPassword |
23 | 23 | * |
24 | 24 | * @param ServiceLocatorInterface $serviceLocator |
25 | - * @return \Auth\View\Helper\Auth |
|
25 | + * @return MailForgotPassword |
|
26 | 26 | * @see \Zend\ServiceManager\FactoryInterface::createService() |
27 | 27 | */ |
28 | 28 | public function createService(ServiceLocatorInterface $serviceLocator) |
@@ -17,7 +17,7 @@ |
||
17 | 17 | /** |
18 | 18 | * @param string $par Query Parameter |
19 | 19 | * @param string $geoCoderUrl Url of the geo location service |
20 | - * @param string $land language |
|
20 | + * @param string $lang language |
|
21 | 21 | * |
22 | 22 | * @return array|mixed|string |
23 | 23 | */ |
@@ -19,7 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | /** |
21 | 21 | * @param ServiceLocatorInterface $serviceLocator |
22 | - * @return PaginationAdminQuery|mixed |
|
22 | + * @return PaginationAdminQuery |
|
23 | 23 | */ |
24 | 24 | public function createService(ServiceLocatorInterface $serviceLocator) |
25 | 25 | { |