Skip to content

Commit

Permalink
Update Factory.php (#23200)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurencei authored and taylorotwell committed Feb 17, 2018
1 parent b345650 commit a60770e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Contracts/Cookie/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ interface Factory
* @param int $minutes
* @param string $path
* @param string $domain
* @param bool $secure
* @param bool|null $secure
* @param bool $httpOnly
* @param bool $raw
* @param string|null $sameSite
* @return \Symfony\Component\HttpFoundation\Cookie
*/
public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true, $raw = false, $sameSite = null);
public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null);

/**
* Create a cookie that lasts "forever" (five years).
Expand All @@ -27,13 +27,13 @@ public function make($name, $value, $minutes = 0, $path = null, $domain = null,
* @param string $value
* @param string $path
* @param string $domain
* @param bool $secure
* @param bool|null $secure
* @param bool $httpOnly
* @param bool $raw
* @param string|null $sameSite
* @return \Symfony\Component\HttpFoundation\Cookie
*/
public function forever($name, $value, $path = null, $domain = null, $secure = false, $httpOnly = true, $raw = false, $sameSite = null);
public function forever($name, $value, $path = null, $domain = null, $secure = null, $httpOnly = true, $raw = false, $sameSite = null);

/**
* Expire the given cookie.
Expand Down

0 comments on commit a60770e

Please sign in to comment.