Skip to content

Commit 3ad6666

Browse files
committed
refactor: Replace symbol
Replace symbol in start method comment.
1 parent 7b5b32e commit 3ad6666

File tree

2 files changed

+56
-56
lines changed

2 files changed

+56
-56
lines changed

src/Facades/Session.php

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -31,36 +31,36 @@ private static function getInstance()
3131
/**
3232
* Starts the session.
3333
*
34-
* List of available $options with their default values.
34+
* List of available $options with their default values:
3535
*
36-
* @see https://php.net/session.configuration
36+
* * cache_expire: "180"
37+
* * cache_limiter: "nocache"
38+
* * cookie_domain: ""
39+
* * cookie_httponly: "0"
40+
* * cookie_lifetime: "0"
41+
* * cookie_path: "/"
42+
* * cookie_samesite: ""
43+
* * cookie_secure: "0"
44+
* * gc_divisor: "100"
45+
* * gc_maxlifetime: "1440"
46+
* * gc_probability: "1"
47+
* * lazy_write: "1"
48+
* * name: "PHPSESSID"
49+
* * read_and_close: "0"
50+
* * referer_check: ""
51+
* * save_handler: "files"
52+
* * save_path: ""
53+
* * serialize_handler: "php"
54+
* * sid_bits_per_character: "4"
55+
* * sid_length: "32"
56+
* * trans_sid_hosts: $_SERVER['HTTP_HOST']
57+
* * trans_sid_tags: "a=href,area=href,frame=src,form="
58+
* * use_cookies: "1"
59+
* * use_only_cookies: "1"
60+
* * use_strict_mode: "0"
61+
* * use_trans_sid: "0"
3762
*
38-
* cache_expire: "180",
39-
* cache_limiter: "nocache",
40-
* cookie_domain: "",
41-
* cookie_httponly: "0",
42-
* cookie_lifetime: "0",
43-
* cookie_path: "/",
44-
* cookie_samesite: "",
45-
* cookie_secure: "0",
46-
* gc_divisor: "100",
47-
* gc_maxlifetime: "1440",
48-
* gc_probability: "1",
49-
* lazy_write: "1",
50-
* name: "PHPSESSID",
51-
* read_and_close: "0",
52-
* referer_check: "",
53-
* save_handler: "files",
54-
* save_path: "",
55-
* serialize_handler: "php",
56-
* sid_bits_per_character: "4",
57-
* sid_length: "32",
58-
* trans_sid_hosts: $_SERVER['HTTP_HOST'],
59-
* trans_sid_tags: "a=href,area=href,frame=src,form=",
60-
* use_cookies: "1",
61-
* use_only_cookies: "1",
62-
* use_strict_mode: "0",
63-
* use_trans_sid: "0".
63+
* @see https://php.net/session.configuration
6464
*
6565
* @throws SessionException if headers already sent
6666
* @throws SessionException if session already started

src/Session.php

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -28,36 +28,36 @@ public function __construct()
2828
/**
2929
* Starts the session.
3030
*
31-
* List of available $options with their default values.
31+
* List of available $options with their default values:
3232
*
33-
* @see https://php.net/session.configuration
33+
* * cache_expire: "180"
34+
* * cache_limiter: "nocache"
35+
* * cookie_domain: ""
36+
* * cookie_httponly: "0"
37+
* * cookie_lifetime: "0"
38+
* * cookie_path: "/"
39+
* * cookie_samesite: ""
40+
* * cookie_secure: "0"
41+
* * gc_divisor: "100"
42+
* * gc_maxlifetime: "1440"
43+
* * gc_probability: "1"
44+
* * lazy_write: "1"
45+
* * name: "PHPSESSID"
46+
* * read_and_close: "0"
47+
* * referer_check: ""
48+
* * save_handler: "files"
49+
* * save_path: ""
50+
* * serialize_handler: "php"
51+
* * sid_bits_per_character: "4"
52+
* * sid_length: "32"
53+
* * trans_sid_hosts: $_SERVER['HTTP_HOST']
54+
* * trans_sid_tags: "a=href,area=href,frame=src,form="
55+
* * use_cookies: "1"
56+
* * use_only_cookies: "1"
57+
* * use_strict_mode: "0"
58+
* * use_trans_sid: "0"
3459
*
35-
* cache_expire: "180",
36-
* cache_limiter: "nocache",
37-
* cookie_domain: "",
38-
* cookie_httponly: "0",
39-
* cookie_lifetime: "0",
40-
* cookie_path: "/",
41-
* cookie_samesite: "",
42-
* cookie_secure: "0",
43-
* gc_divisor: "100",
44-
* gc_maxlifetime: "1440",
45-
* gc_probability: "1",
46-
* lazy_write: "1",
47-
* name: "PHPSESSID",
48-
* read_and_close: "0",
49-
* referer_check: "",
50-
* save_handler: "files",
51-
* save_path: "",
52-
* serialize_handler: "php",
53-
* sid_bits_per_character: "4",
54-
* sid_length: "32",
55-
* trans_sid_hosts: $_SERVER['HTTP_HOST'],
56-
* trans_sid_tags: "a=href,area=href,frame=src,form=",
57-
* use_cookies: "1",
58-
* use_only_cookies: "1",
59-
* use_strict_mode: "0",
60-
* use_trans_sid: "0".
60+
* @see https://php.net/session.configuration
6161
*
6262
* @throws SessionException if headers already sent
6363
* @throws SessionException if session already started

0 commit comments

Comments
 (0)