Completed
Pull Request — develop (#346)
by ANTHONIUS
06:57
created
module/Core/src/Core/Controller/Plugin/CreatePaginator.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,6 @@
 block discarded – undo
52 52
      *
53 53
      * @param string $paginatorName
54 54
      * @param array  $defaultParams
55
-     * @param bool   $usePostParams if true, the POST parameters from the request are used.
56 55
      *
57 56
      * @return \Zend\Paginator\Paginator
58 57
      * @throws \InvalidArgumentException
Please login to merge, or discard this patch.
module/Core/src/Core/Controller/Plugin/SearchForm.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,10 +46,8 @@
 block discarded – undo
46 46
      *
47 47
      * Proxies to {@link get()}
48 48
      *
49
-     * @param string|array     $elementsFieldset
50
-     * @param null|string $buttonsFieldset
51 49
      *
52
-     * @return \Core\Form\TextSearchForm
50
+     * @return \Core\Form\SearchForm
53 51
      */
54 52
     public function __invoke($form, $options = null, $params = null)
55 53
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Controller/Plugin/UserSwitcher.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Switch to another user.
95 95
      *
96
-     * @param string|UserInterface $id user id of the user to switch to.
96
+     * @param string $id user id of the user to switch to.
97 97
      * @param array $params Additional parameters to store in the session container.
98 98
      *
99 99
      * @return bool
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      * @param string $key
168 168
      * @param mixed $default Value to return if param $key is not set.
169 169
      *
170
-     * @return null
170
+     * @return string
171 171
      */
172 172
     public function getSessionParam($key, $default = null)
173 173
     {
Please login to merge, or discard this patch.
module/Auth/src/Acl/Controller/Plugin/AclFactory.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
      * @param  string             $requestedName
28 28
      * @param  null|array         $options
29 29
      *
30
-     * @return object
30
+     * @return Acl
31 31
      * @throws ServiceNotFoundException if unable to resolve the service.
32 32
      * @throws ServiceNotCreatedException if an exception is raised when
33 33
      *     creating a service.
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/EventManager/EventManagerAbstractFactory.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      * @param  string             $requestedName
114 114
      * @param  null|array         $options
115 115
      *
116
-     * @return object
116
+     * @return \Zend\EventManager\EventManagerInterface
117 117
      * @throws ServiceNotFoundException if unable to resolve the service.
118 118
      * @throws ServiceNotCreatedException if an exception is raised when
119 119
      *     creating a service.
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
      * @param string|array $options String is either event name or aggregate name (when name is int).
334 334
      *                              Array are the options from config. [ [event,..], method, priority, lazy]
335 335
      *
336
-     * @return array
336
+     * @return \Zend\EventManager\EventManagerInterface
337 337
      */
338 338
     protected function normalizeListenerOptions($name, $options)
339 339
     {
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Controller/IndexControllerFactory.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
      * @param  string             $requestedName
28 28
      * @param  null|array         $options
29 29
      *
30
-     * @return object
30
+     * @return IndexController
31 31
      * @throws ServiceNotFoundException if unable to resolve the service.
32 32
      * @throws ServiceNotCreatedException if an exception is raised when
33 33
      *     creating a service.
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Controller/ManageControllerFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param  string             $requestedName
25 25
      * @param  null|array         $options
26 26
      *
27
-     * @return object
27
+     * @return ManageController
28 28
      * @throws ServiceNotFoundException if unable to resolve the service.
29 29
      * @throws ServiceNotCreatedException if an exception is raised when
30 30
      *     creating a service.
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Controller/TemplateControllerFactory.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
      * @param  string             $requestedName
27 27
      * @param  null|array         $options
28 28
      *
29
-     * @return object
29
+     * @return TemplateController
30 30
      * @throws ServiceNotFoundException if unable to resolve the service.
31 31
      * @throws ServiceNotCreatedException if an exception is raised when
32 32
      *     creating a service.
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Form/ActiveOrganizationSelectFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @param  string             $requestedName
34 34
      * @param  null|array         $options
35 35
      *
36
-     * @return object
36
+     * @return OrganizationSelect
37 37
      * @throws ServiceNotFoundException if unable to resolve the service.
38 38
      * @throws ServiceNotCreatedException if an exception is raised when
39 39
      *     creating a service.
Please login to merge, or discard this patch.