Passed
Pull Request — 5.x (#26)
by Enjoys
19:57 queued 15:23
created
src/Elements/Csrf.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $this->addRule(
32 32
             Rules::CALLBACK,
33 33
             'CSRF Attack detected',
34
-            function (string $key) {
34
+            function(string $key) {
35 35
                 /** @psalm-suppress  PossiblyNullArgument, MixedArgument */
36 36
                 if (password_verify($key, $this->getRequest()->getParsedBody()[Form::_TOKEN_CSRF_] ?? '')) {
37 37
                     return true;
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     private function getCsrfSecret(): string
66 66
     {
67
-        $secret = (string)$this->session->get('csrf_secret');
67
+        $secret = (string) $this->session->get('csrf_secret');
68 68
 
69 69
         if (empty($secret)) {
70 70
             $secret = $this->generateSecret();
Please login to merge, or discard this patch.
src/Form.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      * @param array|Closure():array $data
95 95
      * @return $this
96 96
      */
97
-    public function setDefaults(array|Closure $data): Form
97
+    public function setDefaults(array | Closure $data): Form
98 98
     {
99 99
         if ($this->submitted === true) {
100 100
             /** @var array $requestData */
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             };
106 106
             $data = array_filter(
107 107
                 $requestData,
108
-                function ($k) {
108
+                function($k) {
109 109
                     return !in_array($k, [self::_TOKEN_CSRF_, self::_TOKEN_SUBMIT_]);
110 110
                 },
111 111
                 ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.
src/Rule/UploadCheck/MaxsizeCheck.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,15 +10,15 @@
 block discarded – undo
10 10
 
11 11
 final class MaxsizeCheck implements UploadCheckInterface
12 12
 {
13
-    private UploadedFileInterface|false $value;
13
+    private UploadedFileInterface | false $value;
14 14
     private Ruleable $element;
15
-    private int|string $thresholdSize;
15
+    private int | string $thresholdSize;
16 16
     private ?string $message;
17 17
 
18 18
     public function __construct(
19
-        false|UploadedFileInterface $value,
19
+        false | UploadedFileInterface $value,
20 20
         Ruleable $element,
21
-        int|string $thresholdSize,
21
+        int | string $thresholdSize,
22 22
         ?string $message = null
23 23
     ) {
24 24
         $this->value = $value;
Please login to merge, or discard this patch.
src/Rule/UploadCheck/ExtensionsCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@
 block discarded – undo
9 9
 
10 10
 final class ExtensionsCheck implements UploadCheckInterface
11 11
 {
12
-    private UploadedFileInterface|false $value;
12
+    private UploadedFileInterface | false $value;
13 13
     private Ruleable $element;
14 14
     private array $expectedExtensions;
15 15
     private ?string $message;
16 16
 
17 17
     public function __construct(
18
-        false|UploadedFileInterface $value,
18
+        false | UploadedFileInterface $value,
19 19
         Ruleable $element,
20 20
         string $expectedExtensions,
21 21
         ?string $message = null
Please login to merge, or discard this patch.