@@ -33,6 +33,5 @@ |
||
33 | 33 | |
34 | 34 | namespace Platine\Session\Exception; |
35 | 35 | |
36 | -class FileSessionHandlerException extends SessionException |
|
37 | -{ |
|
36 | +class FileSessionHandlerException extends SessionException { |
|
38 | 37 | } |
@@ -35,6 +35,5 @@ |
||
35 | 35 | |
36 | 36 | use Exception; |
37 | 37 | |
38 | -class SessionException extends Exception |
|
39 | -{ |
|
38 | +class SessionException extends Exception { |
|
40 | 39 | } |
@@ -52,8 +52,7 @@ discard block |
||
52 | 52 | use Platine\Stdlib\Helper\Arr; |
53 | 53 | use SessionHandlerInterface; |
54 | 54 | |
55 | -class Session |
|
56 | -{ |
|
55 | +class Session { |
|
57 | 56 | /** |
58 | 57 | * The session driver to use |
59 | 58 | * @var SessionHandlerInterface |
@@ -124,8 +123,7 @@ discard block |
||
124 | 123 | * not find session data |
125 | 124 | * @return mixed |
126 | 125 | */ |
127 | - public function get(string $key, $default = null) |
|
128 | - { |
|
126 | + public function get(string $key, $default = null) { |
|
129 | 127 | return Arr::get($_SESSION, $key, $default); |
130 | 128 | } |
131 | 129 | |
@@ -180,8 +178,7 @@ discard block |
||
180 | 178 | * not find session data |
181 | 179 | * @return mixed |
182 | 180 | */ |
183 | - public function getFlash(string $key, $default = null) |
|
184 | - { |
|
181 | + public function getFlash(string $key, $default = null) { |
|
185 | 182 | $flashKey = $this->config->get('flash_key'); |
186 | 183 | $name = sprintf('%s.%s', $flashKey, $key); |
187 | 184 |
@@ -233,8 +233,8 @@ |
||
233 | 233 | session_name($sessionName); |
234 | 234 | } |
235 | 235 | |
236 | - $ttl = (int)$this->config->get('ttl'); |
|
237 | - $lifetime = (int)$this->config->get('cookie.lifetime'); |
|
236 | + $ttl = (int) $this->config->get('ttl'); |
|
237 | + $lifetime = (int) $this->config->get('cookie.lifetime'); |
|
238 | 238 | $path = $this->config->get('cookie.path'); |
239 | 239 | $domain = $this->config->get('cookie.domain'); |
240 | 240 | $secure = $this->config->get('cookie.secure'); |
@@ -51,8 +51,7 @@ |
||
51 | 51 | * Class NullStorage |
52 | 52 | * @package Platine\Session\Storage |
53 | 53 | */ |
54 | -class NullStorage extends AbstractStorage |
|
55 | -{ |
|
54 | +class NullStorage extends AbstractStorage { |
|
56 | 55 | /** |
57 | 56 | * {@inheritdoc} |
58 | 57 | * @see SessionHandlerInterface |
@@ -62,10 +62,10 @@ |
||
62 | 62 | */ |
63 | 63 | class LocalStorage extends AbstractStorage |
64 | 64 | { |
65 | - /** |
|
66 | - * The directory to use to save files |
|
67 | - * @var DirectoryInterface |
|
68 | - */ |
|
65 | + /** |
|
66 | + * The directory to use to save files |
|
67 | + * @var DirectoryInterface |
|
68 | + */ |
|
69 | 69 | protected DirectoryInterface $directory; |
70 | 70 | |
71 | 71 | /** |
@@ -60,8 +60,7 @@ discard block |
||
60 | 60 | * Class LocalStorage |
61 | 61 | * @package Platine\Session\Storage |
62 | 62 | */ |
63 | -class LocalStorage extends AbstractStorage |
|
64 | -{ |
|
63 | +class LocalStorage extends AbstractStorage { |
|
65 | 64 | /** |
66 | 65 | * The directory to use to save files |
67 | 66 | * @var DirectoryInterface |
@@ -80,8 +79,7 @@ discard block |
||
80 | 79 | * @param Configuration $config |
81 | 80 | * @throws FileSessionHandlerException |
82 | 81 | */ |
83 | - public function __construct(Filesystem $filesystem, ?Configuration $config = null) |
|
84 | - { |
|
82 | + public function __construct(Filesystem $filesystem, ?Configuration $config = null) { |
|
85 | 83 | parent::__construct($config); |
86 | 84 | |
87 | 85 | $path = $this->config->get('storages.file.path'); |
@@ -55,15 +55,13 @@ |
||
55 | 55 | * Class ApcuStorage |
56 | 56 | * @package Platine\Session\Storage |
57 | 57 | */ |
58 | -class ApcuStorage extends AbstractStorage |
|
59 | -{ |
|
58 | +class ApcuStorage extends AbstractStorage { |
|
60 | 59 | /** |
61 | 60 | * {@inheritdoc} |
62 | 61 | * |
63 | 62 | * Create new instance |
64 | 63 | */ |
65 | - public function __construct(?Configuration $config = null) |
|
66 | - { |
|
64 | + public function __construct(?Configuration $config = null) { |
|
67 | 65 | if ((!extension_loaded('apcu')) || !((bool) ini_get('apc.enabled'))) { |
68 | 66 | throw new SessionException('The session for APCu driver is not available.' |
69 | 67 | . ' Check if APCu extension is loaded and enabled.'); |
@@ -53,8 +53,7 @@ |
||
53 | 53 | * Class Configuration |
54 | 54 | * @package Platine\Session |
55 | 55 | */ |
56 | -class Configuration extends AbstractConfiguration |
|
57 | -{ |
|
56 | +class Configuration extends AbstractConfiguration { |
|
58 | 57 | /** |
59 | 58 | * {@inheritdoc} |
60 | 59 | */ |
@@ -67,8 +67,7 @@ |
||
67 | 67 | * Create new instance |
68 | 68 | * @param Configuration|null $config |
69 | 69 | */ |
70 | - public function __construct(?Configuration $config = null) |
|
71 | - { |
|
70 | + public function __construct(?Configuration $config = null) { |
|
72 | 71 | $this->config = $config ?? new Configuration([]); |
73 | 72 | } |
74 | 73 |