Completed
Push — develop ( 31c340...db8caa )
by Mathias
08:35
created
module/Core/src/Core/View/Helper/Service/DateFormatHelperFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      * - injects the MvcEvent instance
27 27
      *
28 28
      * @param ServiceLocatorInterface $serviceLocator
29
-     * @return \Core\View\Helper\Params
29
+     * @return DateFormat
30 30
      * @see \Zend\ServiceManager\FactoryInterface::createService()
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/Cv.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     }
60 60
     
61 61
     /**
62
-     * @return \Core\Entity\Collection\ArrayCollection
62
+     * @return EducationInterface
63 63
      */
64 64
     public function getEducations()
65 65
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @return \Core\Entity\Collection\ArrayCollection
83
+     * @return EmploymentInterface
84 84
      */
85 85
     public function getEmployments()
86 86
     {
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
     }
102 102
     
103 103
     /**
104
-     * @return \Core\Entity\Collection\ArrayCollection
104
+     * @return SkillInterface
105 105
      */
106 106
     public function getSkills()
107 107
     {
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/CvInterface.php 1 patch
Doc Comments   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,22 +10,24 @@
 block discarded – undo
10 10
 {
11 11
     
12 12
     /**
13
-     * @return the $educations
13
+     * @return EducationInterface $educations
14 14
      */
15 15
     public function getEducations();
16 16
     
17 17
     /**
18
-     * @param field_type $educations
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 EmploymentInterface $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
 }
Please login to merge, or discard this patch.
module/Geo/src/Geo/Form/GeoText.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,6 +48,9 @@  discard block
 block discarded – undo
48 48
         return $this;
49 49
     }
50 50
 
51
+    /**
52
+     * @param Converter $converter
53
+     */
51 54
     public function setConverter($converter)
52 55
     {
53 56
         $this->converter = $converter;
@@ -97,7 +100,7 @@  discard block
 block discarded – undo
97 100
     }
98 101
 
99 102
     /**
100
-     * @return mixed
103
+     * @return Hidden
101 104
      */
102 105
     public function getDataElement()
103 106
     {
@@ -105,7 +108,7 @@  discard block
 block discarded – undo
105 108
     }
106 109
 
107 110
     /**
108
-     * @return mixed
111
+     * @return Text
109 112
      */
110 113
     public function getNameElement()
111 114
     {
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/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 Status $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/Jobs/Entity/JobSnapshot.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -673,7 +673,7 @@  discard block
 block discarded – undo
673 673
     /**
674 674
      * Gets locations of a job posting
675 675
      *
676
-     * @return string
676
+     * @return Collection
677 677
      */
678 678
     public function getLocations()
679 679
     {
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
     /**
716 716
      * Gets applications for a job posting
717 717
      *
718
-     * @return string
718
+     * @return Status
719 719
      */
720 720
     public function getStatus()
721 721
     {
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Listener/MailSenderFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @param ServiceLocatorInterface $serviceLocator
29 29
      *
30
-     * @return NewJobMailSender
30
+     * @return MailSender
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
33 33
     {
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Form/PreviewLink.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-     * @return string|\Zend\View\Helper\HelperInterface
37
+     * @return string
38 38
      */
39 39
     public function getViewHelper()
40 40
     {
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Listener/Events/JobEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      * Sets the job entity
65 65
      *
66 66
      * @param  Job $jobEntity
67
-     * @return MvcEvent
67
+     * @return JobEvent
68 68
      */
69 69
     public function setJobEntity(Job $jobEntity)
70 70
     {
Please login to merge, or discard this patch.