Completed
Push — master ( 0a9cfa...53cde9 )
by Freek
25:27 queued 10:28
created
src/Rules/Authorized.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\ValidationRules\Rules;
4 4
 
5
-use Illuminate\Support\Facades\Auth;
6 5
 use Illuminate\Contracts\Validation\Rule;
6
+use Illuminate\Support\Facades\Auth;
7 7
 
8 8
 class Authorized implements Rule
9 9
 {
Please login to merge, or discard this patch.
src/Rules/CountryCode.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\ValidationRules\Rules;
4 4
 
5
-use League\ISO3166\ISO3166;
6 5
 use Illuminate\Contracts\Validation\Rule;
6
+use League\ISO3166\ISO3166;
7 7
 
8 8
 class CountryCode implements Rule
9 9
 {
Please login to merge, or discard this patch.
src/Rules/Delimited.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -136,6 +136,9 @@
 block discarded – undo
136 136
         return $this->message;
137 137
     }
138 138
 
139
+    /**
140
+     * @param string $attribute
141
+     */
139 142
     protected function validate($attribute, $item): array
140 143
     {
141 144
         $validator = Validator::make([$attribute => $item], [$attribute => $this->rule]);
Please login to merge, or discard this patch.