Skip to content

Commit

Permalink
Trim whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Apr 10, 2021
1 parent b795619 commit 9318568
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/Config/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class App extends BaseConfig
* Set a cookie name prefix if you need to avoid collisions.
*
* @var string
*
*
* @deprecated use Config\Cookie::$prefix property instead.
*/
public $cookiePrefix = '';
Expand All @@ -254,7 +254,7 @@ class App extends BaseConfig
* Set to `.your-domain.com` for site-wide cookies.
*
* @var string
*
*
* @deprecated use Config\Cookie::$domain property instead.
*/
public $cookieDomain = '';
Expand All @@ -267,7 +267,7 @@ class App extends BaseConfig
* Typically will be a forward slash.
*
* @var string
*
*
* @deprecated use Config\Cookie::$path property instead.
*/
public $cookiePath = '/';
Expand All @@ -280,7 +280,7 @@ class App extends BaseConfig
* Cookie will only be set if a secure HTTPS connection exists.
*
* @var boolean
*
*
* @deprecated use Config\Cookie::$secure property instead.
*/
public $cookieSecure = false;
Expand All @@ -293,7 +293,7 @@ class App extends BaseConfig
* Cookie will only be accessible via HTTP(S) (no JavaScript).
*
* @var boolean
*
*
* @deprecated use Config\Cookie::$httponly property instead.
*/
public $cookieHTTPOnly = true;
Expand All @@ -319,7 +319,7 @@ class App extends BaseConfig
* will be set on cookies. If set to `None`, `$cookieSecure` must also be set.
*
* @var string
*
*
* @deprecated use Config\Cookie::$samesite property instead.
*/
public $cookieSameSite = 'Lax';
Expand Down

0 comments on commit 9318568

Please sign in to comment.