Completed
Push — master ( 1d04a1...c12529 )
by Dominik
03:29
created
src/CsrfProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Csrf;
6 6
 
@@ -16,11 +16,11 @@  discard block
 block discarded – undo
16 16
     {
17 17
         $container['csrf.tokenGenerator.entropy'] = 256;
18 18
 
19
-        $container['csrf.tokenGenerator'] = function () use ($container) {
19
+        $container['csrf.tokenGenerator'] = function() use ($container) {
20 20
             return new CsrfTokenGenerator($container['csrf.tokenGenerator.entropy']);
21 21
         };
22 22
 
23
-        $container['csrf.middleware'] = function () use ($container) {
23
+        $container['csrf.middleware'] = function() use ($container) {
24 24
             return new CsrfMiddleware($container['csrf.tokenGenerator'], $container['session']);
25 25
         };
26 26
     }
Please login to merge, or discard this patch.
src/CsrfTokenGeneratorInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Csrf;
6 6
 
Please login to merge, or discard this patch.
src/CsrfTokenGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Csrf;
6 6
 
Please login to merge, or discard this patch.
src/CsrfMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Chubbyphp\Csrf;
6 6
 
Please login to merge, or discard this patch.