Completed
Push — develop ( 037ef6...a650ad )
by Carsten
06:58
created
module/Core/src/Core/Service/RestClient.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * @throws \RuntimeException
91
-     * @return mixed
91
+     * @return ZendClient
92 92
      */
93 93
     protected function authetificate()
94 94
     {
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/Alert.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
     /**
161 161
      * Starts content capturing.
162 162
      *
163
-     * @param string|array $type
163
+     * @param string|null $type
164 164
      * @param array        $options see {@łink render()} for information.
165 165
      *
166 166
      * @return self
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/DateFormat.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@
 block discarded – undo
53 53
      *
54 54
      * @see \Zend\I18n\View\Helper\DateFormat::__invoke()
55 55
      *
56
-     * @param \DateTime $data|string
57 56
      * @param string $dateType
58 57
      * @return string
59 58
      */
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/Params.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
      * Return all event parameters or a single event parameter.
172 172
      *
173 173
      * @param string $param Parameter name to retrieve, or null to get all.
174
-     * @param mixed $efault Default value to use when the parameter is missing.
174
+     * @param mixed $default Default value to use when the parameter is missing.
175 175
      * @return mixed
176 176
      * @throws RuntimeException
177 177
      */
Please login to merge, or discard this patch.
module/Core/src/Core/View/Helper/Period.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * returns the number of years of the education or work experience
19 19
      *
20
-     * @param array $obj
21
-     * @return string
20
+     * @return double
22 21
      */
23 22
     public function __invoke($array)
24 23
     {
Please login to merge, or discard this patch.
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/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/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.