Completed
Push — master ( 87a075...2a291a )
by Albert
37:13 queued 33:30
created
src/Remote/Validator.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * Force validate all rules.
45 45
      *
46
-     * @param $validateAll
46
+     * @param boolean $validateAll
47 47
      */
48 48
     public function setValidateAll($validateAll)
49 49
     {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * Remove rules that should not be validated remotely.
145 145
      *
146 146
      * @param $rules
147
-     * @param $validator
147
+     * @param BaseValidator $validator
148 148
      * @return mixed
149 149
      */
150 150
     protected function purgeNonRemoteRules($rules, $validator)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Proengsoft\JsValidation\Remote;
4 4
 
5
-use Illuminate\Http\JsonResponse;
6
-use Proengsoft\JsValidation\Support\RuleListTrait;
7 5
 use Illuminate\Http\Exception\HttpResponseException;
6
+use Illuminate\Http\JsonResponse;
8 7
 use Illuminate\Validation\Validator as BaseValidator;
9 8
 use Proengsoft\JsValidation\Support\AccessProtectedTrait;
9
+use Proengsoft\JsValidation\Support\RuleListTrait;
10 10
 
11 11
 /**
12 12
  * Class RemoteValidator.
Please login to merge, or discard this patch.