@@ -173,6 +173,9 @@ |
||
173 | 173 | return $this->redirect()->refresh(); |
174 | 174 | } |
175 | 175 | |
176 | + /** |
|
177 | + * @param \Cv\Repository\Cv $repository |
|
178 | + */ |
|
176 | 179 | private function getCv($repository, $user) |
177 | 180 | { |
178 | 181 | $id = |
@@ -93,7 +93,7 @@ |
||
93 | 93 | /** |
94 | 94 | * Gets the the maximum number of allowed attachments |
95 | 95 | * |
96 | - * @return string |
|
96 | + * @return integer |
|
97 | 97 | */ |
98 | 98 | public function getAttachmentsCount() |
99 | 99 | { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | * Look for an drafted Document of a given user |
23 | 23 | * |
24 | 24 | * @param $user |
25 | - * @return CvEntity|null |
|
25 | + * @return \MongoCursor |
|
26 | 26 | */ |
27 | 27 | public function findDraft($user) |
28 | 28 | { |
@@ -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 | */ |
@@ -82,6 +82,7 @@ |
||
82 | 82 | * Generates a location array |
83 | 83 | * |
84 | 84 | * @param Collection $locations, |
85 | + * @param string $locations |
|
85 | 86 | * |
86 | 87 | * @return array |
87 | 88 | */ |
@@ -41,6 +41,9 @@ |
||
41 | 41 | */ |
42 | 42 | protected $message; |
43 | 43 | |
44 | + /** |
|
45 | + * @param StatusInterface|null $status |
|
46 | + */ |
|
44 | 47 | public function __construct($status, $message = '[System]') |
45 | 48 | { |
46 | 49 | if (!$status instanceof StatusInterface) { |
@@ -536,7 +536,7 @@ |
||
536 | 536 | |
537 | 537 | /** |
538 | 538 | * Gets the number of unread applications |
539 | - * @return Collection |
|
539 | + * @return integer |
|
540 | 540 | */ |
541 | 541 | public function getUnreadApplications() |
542 | 542 | { |
@@ -38,6 +38,7 @@ discard block |
||
38 | 38 | * Gets the unique key used by applications to reference a job posting |
39 | 39 | * |
40 | 40 | * @param string $applyId |
41 | + * @return JobInterface|null |
|
41 | 42 | */ |
42 | 43 | public function setApplyId($applyId); |
43 | 44 | |
@@ -93,6 +94,7 @@ discard block |
||
93 | 94 | * Sets an URI for a job posting |
94 | 95 | * |
95 | 96 | * @param string $link |
97 | + * @return Job |
|
96 | 98 | */ |
97 | 99 | public function setLink($link); |
98 | 100 | |
@@ -139,6 +141,7 @@ discard block |
||
139 | 141 | * Sets the title of a job posting |
140 | 142 | * |
141 | 143 | * @param string $title |
144 | + * @return JobInterface |
|
142 | 145 | */ |
143 | 146 | public function setTitle($title); |
144 | 147 | |
@@ -240,6 +243,7 @@ discard block |
||
240 | 243 | * Sets the language of a job posting |
241 | 244 | * |
242 | 245 | * @param string $language |
246 | + * @return Job |
|
243 | 247 | */ |
244 | 248 | public function setLanguage($language); |
245 | 249 | |
@@ -255,6 +259,7 @@ discard block |
||
255 | 259 | * Sets the location of a job posting |
256 | 260 | * |
257 | 261 | * @param string $location |
262 | + * @return Job |
|
258 | 263 | */ |
259 | 264 | public function setLocation($location); |
260 | 265 | |
@@ -269,6 +274,7 @@ discard block |
||
269 | 274 | * Sets locations of a job posting |
270 | 275 | * |
271 | 276 | * @param string $locations |
277 | + * @return Job |
|
272 | 278 | */ |
273 | 279 | public function setLocations($locations); |
274 | 280 | |
@@ -283,6 +289,7 @@ discard block |
||
283 | 289 | * Sets applications for a job posting |
284 | 290 | * |
285 | 291 | * @param Collection $applications |
292 | + * @return Job|null |
|
286 | 293 | */ |
287 | 294 | public function setApplications(Collection $applications); |
288 | 295 | |
@@ -297,6 +304,7 @@ discard block |
||
297 | 304 | * Sets Status of a job posting |
298 | 305 | * |
299 | 306 | * @param string $status |
307 | + * @return void |
|
300 | 308 | */ |
301 | 309 | public function setStatus($status); |
302 | 310 | |
@@ -342,6 +350,7 @@ discard block |
||
342 | 350 | * organisation offering the job. |
343 | 351 | * |
344 | 352 | * @param string $reference |
353 | + * @return Job |
|
345 | 354 | */ |
346 | 355 | public function setReference($reference); |
347 | 356 | |
@@ -357,6 +366,7 @@ discard block |
||
357 | 366 | * Sets the list of channels where a job opening should be published |
358 | 367 | * |
359 | 368 | * @param Array $portals |
369 | + * @return Job|null |
|
360 | 370 | */ |
361 | 371 | public function setPortals(array $portals); |
362 | 372 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | * @param string $requestedName |
31 | 31 | * @param null|array $options |
32 | 32 | * |
33 | - * @return object |
|
33 | + * @return MultipostingSelect |
|
34 | 34 | * @throws ServiceNotFoundException if unable to resolve the service. |
35 | 35 | * @throws ServiceNotCreatedException if an exception is raised when |
36 | 36 | * creating a service. |