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
4389e5fa
Commit
4389e5fa
authored
May 28, 2012
by
Shawn McCool
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/eloquent_model_detection' into staging
parents
988dae24
11c67a56
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
5 deletions
+24
-5
driver.php
laravel/auth/drivers/driver.php
+0
-4
eloquent.php
laravel/auth/drivers/eloquent.php
+24
-1
No files found.
laravel/auth/drivers/driver.php
View file @
4389e5fa
...
@@ -107,10 +107,6 @@ abstract class Driver {
...
@@ -107,10 +107,6 @@ abstract class Driver {
*/
*/
public
function
login
(
$token
,
$remember
=
false
)
public
function
login
(
$token
,
$remember
=
false
)
{
{
// if the token is an Eloquent model
// set the token from the id field
if
(
$token
instanceof
Eloquent
)
$token
=
$token
->
get_key
();
$this
->
token
=
$token
;
$this
->
token
=
$token
;
$this
->
store
(
$token
);
$this
->
store
(
$token
);
...
...
laravel/auth/drivers/eloquent.php
View file @
4389e5fa
...
@@ -18,6 +18,29 @@ class Eloquent extends Driver {
...
@@ -18,6 +18,29 @@ class Eloquent extends Driver {
}
}
}
}
/**
* Login the user assigned to the given token.
*
* The token is typically a numeric ID for the user.
*
* @param mixed $token
* @param bool $remember
* @return bool
*/
public
function
login
(
$token
,
$remember
=
false
)
{
// if the token is an Eloquent model get the primary key
if
(
$token
instanceof
\Eloquent
)
$token
=
$token
->
get_key
();
$this
->
token
=
$token
;
$this
->
store
(
$token
);
if
(
$remember
)
$this
->
remember
(
$token
);
return
true
;
}
/**
/**
* Attempt to log a user into the application.
* Attempt to log a user into the application.
*
*
...
...
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