Completed
Push — develop ( e1a849...b559a4 )
by
unknown
15:15 queued 07:42
created
module/Cv/src/Cv/Entity/CvInterface.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,16 +16,18 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/Cv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
 
141 141
     public function setIsDraft($isDraft)
142 142
     {
143
-        $this->isDraft=$isDraft;
143
+        $this->isDraft = $isDraft;
144 144
         return $this;
145 145
     }
146 146
 
Please login to merge, or discard this patch.