Completed
Push — develop ( 62f68e...872778 )
by Carsten
13s
created
module/Cv/src/Controller/ManageController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@
 block discarded – undo
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 =
Please login to merge, or discard this patch.
module/Cv/src/Options/ModuleOptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
module/Cv/src/Repository/Cv.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
module/Jobs/src/Controller/ManageController.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -165,7 +165,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
604 603
     }
605 604
 
606 605
     /**
607
-     * @param $script
606
+     * @param string $script
608 607
      * @param array $parameter
609 608
      * @return ViewModel
610 609
      */
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Decorator/JsonLdProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -82,6 +82,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
module/Jobs/src/Entity/History.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Job.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -536,7 +536,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
module/Jobs/src/Entity/JobInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
module/Jobs/src/Factory/Form/MultipostingSelectFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.