@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * @throws Mapping\MappingException |
53 | 53 | * @throws LockException |
54 | 54 | * @throws UserDeactivatedException |
55 | - * @return null | UserInterface |
|
55 | + * @return null|UserInterface | UserInterface |
|
56 | 56 | */ |
57 | 57 | public function find($id, $lockMode = \Doctrine\ODM\MongoDB\LockMode::NONE, $lockVersion = null, array $options = []) |
58 | 58 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * @param array $criteria |
64 | 64 | * @param array $options |
65 | 65 | * @throws UserDeactivatedException |
66 | - * @return null | UserInterface |
|
66 | + * @return null|UserInterface | UserInterface |
|
67 | 67 | */ |
68 | 68 | public function findOneBy(array $criteria, array $options = []) |
69 | 69 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * Creates a User |
93 | 93 | * |
94 | 94 | * @see \Core\Repository\AbstractRepository::create() |
95 | - * @return UserInterface |
|
95 | + * @return \Core\Entity\EntityInterface |
|
96 | 96 | */ |
97 | 97 | public function create(array $data = null) |
98 | 98 | { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | /** |
159 | - * @param $email |
|
159 | + * @param string $email |
|
160 | 160 | * @param bool $isDraft |
161 | 161 | * |
162 | 162 | * @return UserInterface|null |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @param UserInterface $user |
268 | 268 | * @param array $options |
269 | 269 | * @throws UserDeactivatedException |
270 | - * @return null | UserInterface |
|
270 | + * @return null|UserInterface | UserInterface |
|
271 | 271 | */ |
272 | 272 | protected function assertEntity(UserInterface $user = null, array $options) |
273 | 273 | { |
@@ -74,6 +74,9 @@ |
||
74 | 74 | return $this->renderElements($fieldset, true); |
75 | 75 | } |
76 | 76 | |
77 | + /** |
|
78 | + * @return null|FormInterface |
|
79 | + */ |
|
77 | 80 | public function renderElements($fieldset, $buttonsFieldset, $colMap = null, $buttonsSpan = null) |
78 | 81 | { |
79 | 82 | if ($fieldset instanceOf ViewPartialProviderInterface) { |
@@ -215,8 +215,8 @@ |
||
215 | 215 | } |
216 | 216 | |
217 | 217 | /** |
218 | - * @param $response |
|
219 | - * @param $uri |
|
218 | + * @param \Zend\Stdlib\ResponseInterface $response |
|
219 | + * @param string $uri |
|
220 | 220 | * |
221 | 221 | * @return mixed |
222 | 222 | */ |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
69 | - * @return $this|void |
|
69 | + * @return ManageController |
|
70 | 70 | */ |
71 | 71 | public function attachDefaultListeners() |
72 | 72 | { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * |
111 | 111 | * |
112 | - * @return null|ViewModel |
|
112 | + * @return ViewModel |
|
113 | 113 | */ |
114 | 114 | public function editAction() |
115 | 115 | { |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
127 | - * @return null|ViewModel |
|
127 | + * @return ViewModel |
|
128 | 128 | */ |
129 | 129 | public function saveAction() |
130 | 130 | { |
@@ -159,8 +159,7 @@ discard block |
||
159 | 159 | * |
160 | 160 | * parameter are arbitrary elements for defaults or programming flow |
161 | 161 | * |
162 | - * @param array $parameter |
|
163 | - * @return null|ViewModel |
|
162 | + * @return ViewModel |
|
164 | 163 | * @throws \RuntimeException |
165 | 164 | */ |
166 | 165 | protected function save() |
@@ -366,7 +365,7 @@ discard block |
||
366 | 365 | |
367 | 366 | /** |
368 | 367 | * @param $job |
369 | - * @return mixed |
|
368 | + * @return \Jobs\Form\Job |
|
370 | 369 | */ |
371 | 370 | protected function getFormular($job) |
372 | 371 | { |
@@ -388,7 +387,7 @@ discard block |
||
388 | 387 | } |
389 | 388 | |
390 | 389 | /** |
391 | - * @param $form |
|
390 | + * @param \Jobs\Form\Job $form |
|
392 | 391 | * @param array $params |
393 | 392 | * @return ViewModel |
394 | 393 | */ |
@@ -527,7 +526,7 @@ discard block |
||
527 | 526 | /** |
528 | 527 | * Deactivate a job posting |
529 | 528 | * |
530 | - * @return null|ViewModel |
|
529 | + * @return ViewModel |
|
531 | 530 | */ |
532 | 531 | public function deactivateAction() |
533 | 532 | { |
@@ -564,7 +563,7 @@ discard block |
||
564 | 563 | } |
565 | 564 | |
566 | 565 | /** |
567 | - * @param $script |
|
566 | + * @param string $script |
|
568 | 567 | * @param array $parameter |
569 | 568 | * @return ViewModel |
570 | 569 | */ |
@@ -16,16 +16,18 @@ |
||
16 | 16 | |
17 | 17 | /** |
18 | 18 | * @param CollectionInterface $educations |
19 | + * @return Cv |
|
19 | 20 | */ |
20 | 21 | public function setEducations(CollectionInterface $educations); |
21 | 22 | |
22 | 23 | /** |
23 | - * @return the $employments |
|
24 | + * @return \Doctrine\Common\Collections\ArrayCollection $employments |
|
24 | 25 | */ |
25 | 26 | public function getEmployments(); |
26 | 27 | |
27 | 28 | /** |
28 | - * @param field_type $employments |
|
29 | + * @param CollectionInterface $employments |
|
30 | + * @return Cv |
|
29 | 31 | */ |
30 | 32 | public function setEmployments(CollectionInterface $employments); |
31 | 33 | } |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | } |
139 | 139 | |
140 | 140 | /** |
141 | - * @param $notification |
|
141 | + * @param string $notification |
|
142 | 142 | * |
143 | 143 | * @return $this |
144 | 144 | */ |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | } |
169 | 169 | |
170 | 170 | /** |
171 | - * @return mixed |
|
171 | + * @return string |
|
172 | 172 | */ |
173 | 173 | public function getStatus() |
174 | 174 | { |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
179 | - * @return mixed |
|
179 | + * @return boolean |
|
180 | 180 | */ |
181 | 181 | public function isPostRequest() |
182 | 182 | { |
@@ -109,7 +109,7 @@ |
||
109 | 109 | |
110 | 110 | /** |
111 | 111 | * @param ServiceLocatorInterface $formManager |
112 | - * @return AbstractSettingsForm |
|
112 | + * @return DisableElementsCapableFormSettingsFieldset |
|
113 | 113 | */ |
114 | 114 | public static function factory(ServiceLocatorInterface $formManager) |
115 | 115 | { |