Passed
Push — master ( 749b16...167cfa )
by Gabor
04:47
created
src/WebHemi/Adapter/Http/GuzzleHttp/ServerRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Http\GuzzleHttp;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Http/GuzzleHttp/GuzzleHttpAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Http\GuzzleHttp;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Http/GuzzleHttp/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Http\GuzzleHttp;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Log/LogAdapterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Log;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Log/Klogger/KloggerAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Log\Klogger;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Auth/AbstractAuthAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Auth;
15 15
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      *
119 119
      * @return DataEntityInterface|null
120 120
      */
121
-    public function getIdentity() : ?DataEntityInterface
121
+    public function getIdentity() : ? DataEntityInterface
122 122
     {
123 123
         return $this->authStorage->getIdentity();
124 124
     }
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Auth/AuthAdapterInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Auth;
15 15
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      *
67 67
      * @return DataEntityInterface|null
68 68
      */
69
-    public function getIdentity() : ?DataEntityInterface;
69
+    public function getIdentity() : ? DataEntityInterface;
70 70
 
71 71
     /**
72 72
      * Clears the session.
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Renderer/Twig/TwigRendererAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Renderer\Twig;
15 15
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $viewPath = $this->templateViewPath;
80 80
         // @codeCoverageIgnoreStart
81 81
         // link a core function into template level
82
-        $function = new Twig_SimpleFunction('defined', function ($fileName) use ($viewPath) {
82
+        $function = new Twig_SimpleFunction('defined', function($fileName) use ($viewPath) {
83 83
             $fileName = str_replace('@Theme', $viewPath, $fileName);
84 84
             return file_exists($fileName);
85 85
         });
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Renderer/RendererAdapterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  *
10 10
  * @link      http://www.gixx-web.com
11 11
  */
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace WebHemi\Adapter\Renderer;
15 15
 
Please login to merge, or discard this patch.