Completed
Push — master ( a5af75...4f6c0e )
by Alexpts
02:10
created
src/PTS/Validator/Validator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         foreach ($rules as $name => $attrRules) {
59 59
             if (!array_key_exists($name, $data)) {
60
-                $errors[$name] = 'Value is not exists: ' . $name;
60
+                $errors[$name] = 'Value is not exists: '.$name;
61 61
                 continue;
62 62
             }
63 63
 
@@ -114,6 +114,6 @@  discard block
 block discarded – undo
114 114
         $params = explode($this->paramDelimiter, $rule);
115 115
         $handlerAlias = array_shift($params);
116 116
 
117
-        return [$handlerAlias, (array)$params];
117
+        return [$handlerAlias, (array) $params];
118 118
     }
119 119
 }
Please login to merge, or discard this patch.