Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
170c29ea
Commit
170c29ea
authored
Nov 25, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding better comments in auth class.
parent
dc34d103
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
auth.php
laravel/auth.php
+4
-4
No files found.
laravel/auth.php
View file @
170c29ea
...
@@ -89,15 +89,15 @@ class Auth {
...
@@ -89,15 +89,15 @@ class Auth {
/**
/**
* Attempt to login a user based on a long-lived "remember me" cookie.
* Attempt to login a user based on a long-lived "remember me" cookie.
*
*
* We should be able to trust the cookie is valid, since all cookies
* set by Laravel include a fingerprint hash to ensure the cookie
* value is not changed on the client.
*
* @param string $recaller
* @param string $recaller
* @return mixed
* @return mixed
*/
*/
protected
static
function
recall
(
$recaller
)
protected
static
function
recall
(
$recaller
)
{
{
// When the "remember me" cookie is stored, it is encrypted and contains the
// user's ID and a long, random string. The ID and string are separated by
// a pipe character. Since we exploded the decrypted string, we can just
// pass the first item in the array to the user Closure.
$recaller
=
explode
(
'|'
,
Crypter
::
decrypt
(
$recaller
));
$recaller
=
explode
(
'|'
,
Crypter
::
decrypt
(
$recaller
));
if
(
!
is_null
(
$user
=
call_user_func
(
Config
::
get
(
'auth.user'
),
$recaller
[
0
])))
if
(
!
is_null
(
$user
=
call_user_func
(
Config
::
get
(
'auth.user'
),
$recaller
[
0
])))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment