Passed
Push — develop ( eca878...09ad09 )
by nguereza
02:25
created
src/Exception/FileSessionHandlerException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,6 +33,5 @@
 block discarded – undo
33 33
 
34 34
 namespace Platine\Session\Exception;
35 35
 
36
-class FileSessionHandlerException extends SessionException
37
-{
36
+class FileSessionHandlerException extends SessionException {
38 37
 }
Please login to merge, or discard this patch.
src/Exception/SessionException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,6 +35,5 @@
 block discarded – undo
35 35
 
36 36
 use Exception;
37 37
 
38
-class SessionException extends Exception
39
-{
38
+class SessionException extends Exception {
40 39
 }
Please login to merge, or discard this patch.
src/Session.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -233,8 +233,8 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Storage/NullStorage.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Storage/LocalStorage.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,10 +62,10 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Storage/ApcuStorage.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,15 +55,13 @@
 block discarded – undo
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.');
Please login to merge, or discard this patch.
src/Configuration.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Storage/AbstractStorage.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,8 +67,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.