Completed
Push — develop ( 62f68e...872778 )
by Carsten
13s
created
Applications/src/Repository/Event/DeleteRemovedAttachmentsSubscriber.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
      * Updates fiile permissions on Flush
37 37
      *
38 38
      * @param OnFlushEventArgs $eventArgs
39
-     * @return boolean
39
+     * @return boolean|null
40 40
      */
41 41
     public function postRemoveEntity(LifecycleEventArgs $eventArgs)
42 42
     {
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
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     /**
120 120
      * Switch to another user.
121 121
      *
122
-     * @param string|UserInterface $id user id of the user to switch to.
122
+     * @param string $id user id of the user to switch to.
123 123
      * @param array $params Additional parameters to store in the session container.
124 124
      *
125 125
      * @return bool
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
     /**
223 223
      * Gets the session container.
224 224
      *
225
-     * @return Container
225
+     * @return string
226 226
      */
227 227
     private function getSessionContainer()
228 228
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Dependency/Manager.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -41,8 +41,6 @@  discard block
 block discarded – undo
41 41
     }
42 42
     
43 43
     /**
44
-     * @param User $user
45
-     * @param Router $router
46 44
      * @return ListInterface[]
47 45
      */
48 46
     public function getLists()
@@ -52,8 +50,7 @@  discard block
 block discarded – undo
52 50
  
53 51
     /**
54 52
      * @param User $user
55
-     * @param Router $router
56
-     * @return \Zend\EventManager\ResponseCollection
53
+     * @return boolean
57 54
      */
58 55
     public function removeItems(User $user)
59 56
     {
Please login to merge, or discard this patch.
module/Auth/src/Auth/Repository/User.php 1 patch
Doc Comments   +3 added lines, -3 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
     {
@@ -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/Auth/src/Auth/Service/Register.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     }
155 155
 
156 156
     /**
157
-     * @param $user
157
+     * @param \Auth\Entity\UserInterface $user
158 158
      * @return $this
159 159
      */
160 160
     protected function setUser($user)
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Email-Address
249 249
      * @param $email string
250
-     * @return mixed
250
+     * @return Register
251 251
      */
252 252
     protected function setEmail($email)
253 253
     {
Please login to merge, or discard this patch.
module/Behat/src/CoreContext.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,6 @@  discard block
 block discarded – undo
104 104
     
105 105
     /**
106 106
      * @param $name
107
-     * @param array $params
108 107
      *
109 108
      * @return string
110 109
      */
@@ -115,6 +114,7 @@  discard block
 block discarded – undo
115 114
 
116 115
     /**
117 116
      * @When /^I hover over the element "([^"]*)"$/
117
+     * @param string $locator
118 118
      */
119 119
     public function iHoverOverTheElement($locator)
120 120
     {
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     }
260 260
     
261 261
     /**
262
-     * @param $locator
262
+     * @param string $locator
263 263
      * @param string $selector
264 264
      *
265 265
      * @return \Behat\Mink\Element\NodeElement|mixed|null
Please login to merge, or discard this patch.
module/Behat/src/UserContext.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -219,6 +219,9 @@
 block discarded – undo
219 219
         $this->startLogin($user, 'test');
220 220
     }
221 221
     
222
+    /**
223
+     * @param string $password
224
+     */
222 225
     private function startLogin(UserInterface $user, $password)
223 226
     {
224 227
         $currentUser = $this->currentUser;
Please login to merge, or discard this patch.
module/Core/src/Controller/Plugin/CreatePaginatorService.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,6 @@
 block discarded – undo
106 106
     }
107 107
     
108 108
     /**
109
-     * @param ControllerManager $controllerManager
110 109
      * @return CreatePaginatorService
111 110
      */
112 111
     public static function factory(ContainerInterface $container)
Please login to merge, or discard this patch.
module/Core/src/Controller/Plugin/EntitySnapshot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @return mixed
81
+     * @return RepositoryInterface
82 82
      */
83 83
     public function getRepositories()
84 84
     {
Please login to merge, or discard this patch.