@@ -26,7 +26,7 @@ |
||
| 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) |
@@ -59,7 +59,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
| 104 | - * @return \Core\Entity\Collection\ArrayCollection |
|
| 104 | + * @return SkillInterface |
|
| 105 | 105 | */ |
| 106 | 106 | public function getSkills() |
| 107 | 107 | { |
@@ -10,22 +10,24 @@ |
||
| 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 | } |
@@ -48,6 +48,9 @@ discard block |
||
| 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 |
||
| 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 |
||
| 105 | 108 | } |
| 106 | 109 | |
| 107 | 110 | /** |
| 108 | - * @return mixed |
|
| 111 | + * @return Text |
|
| 109 | 112 | */ |
| 110 | 113 | public function getNameElement() |
| 111 | 114 | { |
@@ -41,6 +41,9 @@ |
||
| 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) { |
@@ -673,7 +673,7 @@ discard block |
||
| 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 |
||
| 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 | { |
@@ -27,7 +27,7 @@ |
||
| 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 | { |
@@ -34,7 +34,7 @@ |
||
| 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 | { |
@@ -64,7 +64,7 @@ |
||
| 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 | { |