Completed
Push — master ( f6de35...a14de9 )
by Arnold
09:27
created
src/Auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * Set the current user
88 88
      * 
89 89
      * @param User $user
90
-     * @return boolean
90
+     * @return null|User
91 91
      */
92 92
     public function setUser(User $user)
93 93
     {
Please login to merge, or discard this patch.
src/Auth/Confirmation.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * Fetch a user by ID
31 31
      * 
32
-     * @param int|string $id
32
+     * @param string $id
33 33
      * @return User|null
34 34
      */
35 35
     abstract public function fetchUserById($id);
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * Create a heashids interface
47 47
      * 
48
-     * @param string $secret
48
+     * @param string $subject
49 49
      * @return Hashids
50 50
      */
51 51
     protected function createHashids($subject)
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * 
75 75
      * @param string $id
76 76
      * @param int    $len  The number of integers (between 12 and 64)
77
-     * @return int
77
+     * @return string
78 78
      */
79 79
     protected function getConfirmationChecksum($id, $len = 12)
80 80
     {
Please login to merge, or discard this patch.