Passed
Branch 1.x (c4690d)
by Yuu
09:58
created
Category
src/PdoSessionModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param \PDO  $pdo
29 29
      * @param array $options
30 30
      */
31
-    public function __construct(\PDO $pdo, array $options = [])
31
+    public function __construct(\PDO $pdo, array $options = [ ])
32 32
     {
33 33
         $this->pdo = $pdo;
34 34
         $this->options = $options;
Please login to merge, or discard this patch.
src/SessionalModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
         $this->bindInterceptor(
17 17
             $this->matcher->annotatedWith(Sessional::class),
18 18
             $this->matcher->any(),
19
-            [SessionalInterceptor::class]
19
+            [ SessionalInterceptor::class ]
20 20
         );
21 21
 
22 22
         // Method annotated with @Sessional
23 23
         $this->bindInterceptor(
24 24
             $this->matcher->any(),
25 25
             $this->matcher->annotatedWith(Sessional::class),
26
-            [SessionalInterceptor::class]
26
+            [ SessionalInterceptor::class ]
27 27
         );
28 28
     }
29 29
 }
Please login to merge, or discard this patch.
src/SessionProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @SessionHandler("handler")
32 32
      * @SessionOptions("options")
33 33
      */
34
-    public function __construct($handler, array $options = [])
34
+    public function __construct($handler, array $options = [ ])
35 35
     {
36 36
         $this->handler = $handler;
37 37
         $this->options = $options;
Please login to merge, or discard this patch.