Completed
Pull Request — 1.x (#627)
by Dylan
08:40
created
src/ZfcUser/Factory/UserHydrator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      * Create service
19 19
      *
20 20
      * @param ServiceLocatorInterface $serviceLocator
21
-     * @return mixed
21
+     * @return \Zend\Stdlib\Hydrator\ClassMethods
22 22
      */
23 23
     public function createService(ServiceLocatorInterface $serviceLocator)
24 24
     {
Please login to merge, or discard this patch.
src/ZfcUser/Factory/View/Helper/ZfcUserDisplayName.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * Create service
20 20
      *
21 21
      * @param ServiceLocatorInterface $serviceManager
22
-     * @return mixed
22
+     * @return View\Helper\ZfcUserDisplayName
23 23
      */
24 24
     public function createService(ServiceLocatorInterface $serviceManager)
25 25
     {
Please login to merge, or discard this patch.
src/ZfcUser/Factory/View/Helper/ZfcUserIdentity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * Create service
20 20
      *
21 21
      * @param ServiceLocatorInterface $serviceManager
22
-     * @return mixed
22
+     * @return View\Helper\ZfcUserIdentity
23 23
      */
24 24
     public function createService(ServiceLocatorInterface $serviceManager)
25 25
     {
Please login to merge, or discard this patch.
src/ZfcUser/Factory/View/Helper/ZfcUserLoginWidget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
      * Create service
20 20
      *
21 21
      * @param ServiceLocatorInterface $serviceManager
22
-     * @return mixed
22
+     * @return View\Helper\ZfcUserLoginWidget
23 23
      */
24 24
     public function createService(ServiceLocatorInterface $serviceManager)
25 25
     {
Please login to merge, or discard this patch.
src/ZfcUser/Authentication/Adapter/Db.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -113,6 +113,9 @@
 block discarded – undo
113 113
           ->setMessages(array('Authentication successful.'));
114 114
     }
115 115
 
116
+    /**
117
+     * @param Bcrypt $bcrypt
118
+     */
116 119
     protected function updateUserPasswordHash($userObject, $password, $bcrypt)
117 120
     {
118 121
         $hash = explode('$', $userObject->getPassword());
Please login to merge, or discard this patch.