Completed
Push — master ( 2df407...de4379 )
by Neomerx
05:05
created
src/Rules/Converters/StringToInt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     public static function execute($value, ContextInterface $context): array
37 37
     {
38 38
         if (is_string($value) === true || is_numeric($value) === true) {
39
-            return static::createSuccessReply((int)$value);
39
+            return static::createSuccessReply((int) $value);
40 40
         }
41 41
 
42 42
         return static::createErrorReply($context, $value, ErrorCodes::IS_INT);
Please login to merge, or discard this patch.
src/Rules/Generic/Enum.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,6 @@
 block discarded – undo
56 56
         $isOk   = in_array($value, $values);
57 57
 
58 58
         return $isOk === true ?
59
-            static::createSuccessReply($value) :
60
-            static::createErrorReply($context, $value, ErrorCodes::INVALID_VALUE);
59
+            static::createSuccessReply($value) : static::createErrorReply($context, $value, ErrorCodes::INVALID_VALUE);
61 60
     }
62 61
 }
Please login to merge, or discard this patch.
src/Rules/Generic/Filter.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,6 @@
 block discarded – undo
73 73
         $output = filter_var($value, $filterId, $filterOptions);
74 74
 
75 75
         return $output !== false ?
76
-            static::createSuccessReply($output) :
77
-            static::createErrorReply($context, $value, $errorCode, [$filterId, $filterOptions]);
76
+            static::createSuccessReply($output) : static::createErrorReply($context, $value, $errorCode, [$filterId, $filterOptions]);
78 77
     }
79 78
 }
Please login to merge, or discard this patch.
sample/Validation/Rules.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      */
40 40
     public static function amount(int $max): RuleInterface
41 41
     {
42
-        assert ($max > 0);
42
+        assert($max > 0);
43 43
 
44 44
         return static::stringToInt(static::between(1, $max));
45 45
     }
Please login to merge, or discard this patch.
sample/Validation/IsDeliveryDateRule.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
             $value <= new DateTime('+5 days');
41 41
 
42 42
         return $isValidDeliveryDate === true ?
43
-            static::createSuccessReply($value) :
44
-            static::createErrorReply($context, $value, Errors::IS_DELIVERY_DATE);
43
+            static::createSuccessReply($value) : static::createErrorReply($context, $value, Errors::IS_DELIVERY_DATE);
45 44
     }
46 45
 }
Please login to merge, or discard this patch.
sample/Validation/IsSkuRule.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
         $idExists = is_int($value) === true && $value < 3;
36 36
 
37 37
         return $idExists === true ?
38
-            static::createSuccessReply($value) :
39
-            static::createErrorReply($context, $value, Errors::IS_VALID_SKU);
38
+            static::createSuccessReply($value) : static::createErrorReply($context, $value, Errors::IS_VALID_SKU);
40 39
     }
41 40
 }
Please login to merge, or discard this patch.