Completed
Pull Request — develop (#235)
by ANTHONIUS
07:49
created
module/Orders/src/Factory/Form/JobInvoiceAddressFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param ServiceLocatorInterface $serviceLocator
38 38
      *
39
-     * @return mixed
39
+     * @return InvoiceAddress
40 40
      */
41 41
     public function createService(ServiceLocatorInterface $serviceLocator)
42 42
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Element/DatePicker.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.
src/Applications/Factory/Listener/EventApplicationCreatedFactory.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 mixed
30
+     * @return EventApplicationCreated
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
33 33
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/FileEntity.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     /**
171 171
      * Gets the mime-type of a file
172 172
      *
173
-     * @return mixed
173
+     * @return string|null
174 174
      */
175 175
     public function getType()
176 176
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * Gets the uploaded date of a file
194 194
      *
195
-     * @return mixed
195
+     * @return null|\DateTime
196 196
      */
197 197
     public function getDateUploaded()
198 198
     {
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
     /**
229 229
      * Gets the length of the file
230 230
      *
231
-     * @return mixed
231
+     * @return string|null
232 232
      */
233 233
     public function getLength()
234 234
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Container.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /**
99 99
      * Gets an iterator to iterate over the enabled formulars.
100 100
      *
101
-     * @return \ArrayIterator
101
+     * @return PriorityList
102 102
      * @see IteratorAggregate::getIterator()
103 103
      */
104 104
     public function getIterator()
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/EventManager/EventManagerAbstractFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@
 block discarded – undo
293 293
      * @param string|array $options String is either event name or aggregate name (when name is int).
294 294
      *                              Array are the options from config. [ [event,..], method, priority, lazy]
295 295
      *
296
-     * @return array
296
+     * @return \Zend\EventManager\EventManagerInterface
297 297
      */
298 298
     protected function normalizeListenerOptions($name, $options)
299 299
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Form/Event/FormEvent.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
     /**
65 65
      * Gets the form instance.
66 66
      *
67
-     * @return Container|FormInterface
67
+     * @return FormInterface
68 68
      */
69 69
     public function getForm()
70 70
     {
Please login to merge, or discard this patch.
Applications/src/Applications/Factory/Listener/StatusChangeFactory.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 mixed
30
+     * @return StatusChange
31 31
      */
32 32
     public function createService(ServiceLocatorInterface $serviceLocator)
33 33
     {
Please login to merge, or discard this patch.
module/Applications/src/Applications/Listener/StatusChange.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
 
158 158
     /**
159 159
      * @param Application $application
160
-     * @param             $status
160
+     * @param             string $status
161 161
      *
162 162
      * @return AddressList
163 163
      */
Please login to merge, or discard this patch.