Passed
Push — develop ( eeccb2...6b5814 )
by nguereza
11:11
created
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/Exception/FileSessionHandlerException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,6 +37,5 @@
 block discarded – undo
37 37
  * @class FileSessionHandlerException
38 38
  * @package Platine\Session\Exception
39 39
  */
40
-class FileSessionHandlerException extends SessionException
41
-{
40
+class FileSessionHandlerException extends SessionException {
42 41
 }
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
@@ -39,6 +39,5 @@
 block discarded – undo
39 39
  * @class SessionException
40 40
  * @package Platine\Session\Exception
41 41
  */
42
-class SessionException extends Exception
43
-{
42
+class SessionException extends Exception {
44 43
 }
Please login to merge, or discard this patch.
src/Storage/LocalStorage.php 1 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|null $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/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/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/Session.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 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
Please login to merge, or discard this patch.