Completed
Push — master ( ac1fa0...9301b0 )
by Neomerx
02:58
created
src/Packages/Csrf/CsrfMiddleware.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * @param ContainerInterface $container
108 108
      *
109
-     * @return array
109
+     * @return ServerRequestInterface
110 110
      */
111 111
     private static function getCsrfSettings(ContainerInterface $container): array
112 112
     {
Please login to merge, or discard this patch.
src/Packages/Csrf/CsrfContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public static function configureContainer(LimoncelloContainerInterface $container): void
42 42
     {
43 43
         $storage = null;
44
-        $factory = function (PsrContainerInterface $container) use (&$storage) {
44
+        $factory = function(PsrContainerInterface $container) use (&$storage) {
45 45
             if ($storage === null) {
46 46
                 $storage = static::createStorage($container);
47 47
             }
Please login to merge, or discard this patch.
src/Packages/Csrf/CsrfSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
         $expectedRet         = ResponseInterface::class;
96 96
         assert(
97 97
             $this->checkPublicStaticCallable($errorResponseMethod, $expectedArgs, $expectedRet) === true,
98
-            'CSRF error response method should have signature ' .
98
+            'CSRF error response method should have signature '.
99 99
             '(ContainerInterface, ServerRequestInterface): ResponseInterface.'
100 100
         );
101 101
 
Please login to merge, or discard this patch.