Completed
Push — develop ( fd8298...e653e2 )
by Carsten
14s
created
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/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.
module/Auth/src/Auth/Listener/Events/AuthEvent.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,8 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Sets the job entity
37 37
      *
38
-     * @param  Job $jobEntity
39
-     * @return MvcEvent
38
+     * @return AuthEvent
40 39
      */
41 40
     public function setUserEntity($userEntity)
42 41
     {
@@ -65,6 +64,9 @@  discard block
 block discarded – undo
65 64
         return $this->newPassword;
66 65
     }
67 66
 
67
+    /**
68
+     * @param string $resetLink
69
+     */
68 70
     public function setResetLink($resetLink)
69 71
     {
70 72
         $this->resetLink = $resetLink;
@@ -76,6 +78,9 @@  discard block
 block discarded – undo
76 78
         return $this->resetLink;
77 79
     }
78 80
 
81
+    /**
82
+     * @param \Auth\Entity\UserInterface $user
83
+     */
79 84
     public function setUser($user)
80 85
     {
81 86
         $this->user = $user;
Please login to merge, or discard this patch.
module/Auth/src/Auth/Repository/User.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @throws Mapping\MappingException
53 53
      * @throws LockException
54 54
      * @throws UserDeactivatedException
55
-     * @return null | UserInterface
55
+     * @return null|UserInterface | UserInterface
56 56
      */
57 57
     public function find($id, $lockMode = \Doctrine\ODM\MongoDB\LockMode::NONE, $lockVersion = null, array $options = [])
58 58
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @param array $criteria
64 64
      * @param array $options
65 65
      * @throws UserDeactivatedException
66
-     * @return null | UserInterface
66
+     * @return null|UserInterface | UserInterface
67 67
      */
68 68
     public function findOneBy(array $criteria, array $options = [])
69 69
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      * Creates a User
93 93
      *
94 94
      * @see \Core\Repository\AbstractRepository::create()
95
-     * @return UserInterface
95
+     * @return \Core\Entity\EntityInterface
96 96
      */
97 97
     public function create(array $data = null)
98 98
     {
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     }
157 157
 
158 158
     /**
159
-     * @param      $email
159
+     * @param      string $email
160 160
      * @param bool $isDraft
161 161
      *
162 162
      * @return UserInterface|null
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
      * @param UserInterface $user
268 268
      * @param array $options
269 269
      * @throws UserDeactivatedException
270
-     * @return null | UserInterface
270
+     * @return null|UserInterface | UserInterface
271 271
      */
272 272
     protected function assertEntity(UserInterface $user = null, array $options)
273 273
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Listener/LanguageRouteListener.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -215,8 +215,8 @@
 block discarded – undo
215 215
     }
216 216
 
217 217
     /**
218
-     * @param $response
219
-     * @param $uri
218
+     * @param \Zend\Stdlib\ResponseInterface $response
219
+     * @param string $uri
220 220
      *
221 221
      * @return mixed
222 222
      */
Please login to merge, or discard this patch.
module/Applications/src/Applications/Listener/Events/ApplicationEvent.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
     }
139 139
 
140 140
     /**
141
-     * @param $notification
141
+     * @param string $notification
142 142
      *
143 143
      * @return $this
144 144
      */
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return mixed
171
+     * @return string
172 172
      */
173 173
     public function getStatus()
174 174
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @return mixed
179
+     * @return boolean
180 180
      */
181 181
     public function isPostRequest()
182 182
     {
Please login to merge, or discard this patch.
Settings/src/Settings/Form/DisableElementsCapableFormSettingsFieldset.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     
110 110
     /**
111 111
      * @param ServiceLocatorInterface $formManager
112
-     * @return AbstractSettingsForm
112
+     * @return DisableElementsCapableFormSettingsFieldset
113 113
      */
114 114
     public static function factory(ServiceLocatorInterface $formManager)
115 115
     {
Please login to merge, or discard this patch.
module/Core/src/Core/Collection/IdentityWrapper.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -381,7 +381,6 @@
 block discarded – undo
381 381
 	}
382 382
 
383 383
 	/**
384
-	 * @param mixed $element
385 384
 	 * @return mixed
386 385
 	 */
387 386
 	protected function getElement($key)
Please login to merge, or discard this patch.
module/Core/src/Core/Form/CollectionContainer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
179 179
     
180 180
     /**
181 181
      * @throws \RuntimeException
182
-     * @return Collection
182
+     * @return \Core\Entity\EntityInterface
183 183
      */
184 184
     protected function getCollection()
185 185
     {
Please login to merge, or discard this patch.