Completed
Push — master ( 11225d...73b999 )
by Alexpts
01:48
created
src/PTS/Validator/Validators/AlphaNumValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/AlphaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/AlphaDashValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/RequiredValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/MinValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/MaxValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/ValidatorRuleException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator;
5 5
 
Please login to merge, or discard this patch.
src/PTS/Validator/Validator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,6 +163,6 @@
 block discarded – undo
163 163
         $params = explode($this->paramDelimiter, $rule);
164 164
         $handlerAlias = array_shift($params);
165 165
 
166
-        return [$handlerAlias, (array)$params];
166
+        return [$handlerAlias, (array) $params];
167 167
     }
168 168
 }
Please login to merge, or discard this patch.
src/PTS/Validator/Validators/InArrayValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace PTS\Validator\Validators;
5 5
 
Please login to merge, or discard this patch.