Completed
Push — master ( 2058c6...5e2c9d )
by Marcus
02:27
created
src/Validator.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -99,8 +99,6 @@
 block discarded – undo
99 99
      * Configure the validator to sanitize the given $field, with the given $rule.
100 100
      *
101 101
      * @param string $field
102
-     * @param string $ruleName
103
-     * @param array $args
104 102
      *
105 103
      * @throws ValidationException
106 104
      *
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 namespace Mbright\Validation;
4 4
 
5 5
 use Mbright\Validation\Exception\ValidationException;
6
+use Mbright\Validation\Failure\FailureCollection;
6 7
 use Mbright\Validation\Locator\SanitizeLocator;
7 8
 use Mbright\Validation\Locator\ValidationLocator;
8 9
 use Mbright\Validation\Spec\AbstractSpec;
9 10
 use Mbright\Validation\Spec\SanitizeSpec;
10 11
 use Mbright\Validation\Spec\ValidateSpec;
11
-use Mbright\Validation\Failure\FailureCollection;
12 12
 
13 13
 class Validator
14 14
 {
Please login to merge, or discard this patch.