Test Failed
Push — master ( 1eee01...3150c9 )
by Gabor
02:29
created
src/WebHemi/CSRF/ServiceAdapter/Base/ServiceAdapter.php 1 patch
Spacing   +3 added lines, -3 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\CSRF\ServiceAdapter\Base;
15 15
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             $randomString = $this->getRandomString(32);
50 50
         }
51 51
 
52
-        $token = base64_encode(time() . $extra . $randomString);
52
+        $token = base64_encode(time().$extra.$randomString);
53 53
 
54 54
         $this->sessionManager->set(self::SESSION_KEY, $token);
55 55
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
      */
104 104
     protected function getClientHash() : string
105 105
     {
106
-        return sha1($_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']);
106
+        return sha1($_SERVER['REMOTE_ADDR'].$_SERVER['HTTP_USER_AGENT']);
107 107
     }
108 108
 
109 109
     /**
Please login to merge, or discard this patch.
src/WebHemi/Form/Preset/ApplicationCreateForm.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\Form\Preset;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Validator/ValidatorCollection.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\Validator;
15 15
 
Please login to merge, or discard this patch.
src/WebHemi/Validator/ValidatorCollectionInterface.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\Validator;
15 15
 
Please login to merge, or discard this patch.