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
5637a29f
Commit
5637a29f
authored
May 10, 2012
by
Colin Viebrock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Cookie::forever constant, fixes #660
Signed-off-by:
Colin Viebrock
<
colin@viebrock.ca
>
parent
df79b47c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
cookie.php
laravel/cookie.php
+9
-2
No files found.
laravel/cookie.php
View file @
5637a29f
...
...
@@ -2,6 +2,13 @@
class
Cookie
{
/**
* How long is forever (in minutes).
*
* @var int
*/
const
forever
=
525600
;
/**
* The cookies that have been set.
*
...
...
@@ -27,7 +34,7 @@ class Cookie {
* // Get the value of the "favorite" cookie
* $favorite = Cookie::get('favorite');
*
* // Get the value of a cookie or return a default value
* // Get the value of a cookie or return a default value
* $favorite = Cookie::get('framework', 'Laravel');
* </code>
*
...
...
@@ -96,7 +103,7 @@ class Cookie {
*/
public
static
function
forever
(
$name
,
$value
,
$path
=
'/'
,
$domain
=
null
,
$secure
=
false
)
{
return
static
::
put
(
$name
,
$value
,
525600
,
$path
,
$domain
,
$secure
);
return
static
::
put
(
$name
,
$value
,
static
::
forever
,
$path
,
$domain
,
$secure
);
}
/**
...
...
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