File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public function getRememberTokenName()
7171 /**
7272 * Add a generic getter to get all the properties of the userInfo.
7373 *
74- * @return the related value or null if it is not set
74+ * @return mixed the related value or null if it is not set
7575 */
7676 public function __get ($ name )
7777 {
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ class Auth0User implements \Illuminate\Contracts\Auth\Authenticatable
1414 /**
1515 * Auth0User constructor.
1616 *
17- * @param $userInfo
18- * @param $accessToken
17+ * @param array $userInfo
18+ * @param string|null $accessToken
1919 */
2020 public function __construct ($ userInfo , $ accessToken )
2121 {
Original file line number Diff line number Diff line change 55interface Auth0UserRepository
66{
77 /**
8- * @param stdClass $jwt with the data provided in the JWT
8+ * @param \ stdClass $jwt with the data provided in the JWT
99 *
1010 * @return \Illuminate\Contracts\Auth\Authenticatable
1111 */
@@ -19,7 +19,7 @@ public function getUserByDecodedJWT($jwt);
1919 public function getUserByUserInfo ($ userInfo );
2020
2121 /**
22- * @param $identifier the user id
22+ * @param mixed $identifier the user id
2323 *
2424 * @return \Illuminate\Contracts\Auth\Authenticatable
2525 */
Original file line number Diff line number Diff line change 99class Auth0UserRepository implements Auth0UserRepositoryContract
1010{
1111 /**
12- * @param \Auth0\Login\Contract\ stdClass $jwt
12+ * @param \stdClass $jwt
1313 *
1414 * @return Auth0JWTUser
1515 */
@@ -29,7 +29,7 @@ public function getUserByUserInfo($userInfo)
2929 }
3030
3131 /**
32- * @param \Auth0\Login\Contract\the $identifier
32+ * @param mixed $identifier
3333 *
3434 * @return Auth0User|\Illuminate\Contracts\Auth\Authenticatable|null
3535 */
You can’t perform that action at this time.
0 commit comments