Completed
Push — master ( 73f026...dc38fa )
by Sebastian
04:16
created
app/Providers/ValidationServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
     public function boot()
16 16
     {
17
-        Validator::extend('tags_exist', function ($attribute, $tagNames, $parameters) {
17
+        Validator::extend('tags_exist', function($attribute, $tagNames, $parameters) {
18 18
             list($tagType) = $parameters;
19 19
             $tagType = new TagType($tagType);
20 20
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
             return true;
31 31
         });
32 32
 
33
-        Validator::extend('enum', function ($attribute, $value, $parameters) {
33
+        Validator::extend('enum', function($attribute, $value, $parameters) {
34 34
 
35 35
             /** @var \App\Foundation\Models\Enums\Enum $class */
36 36
             $class = $parameters[0];
Please login to merge, or discard this patch.