Passed
Push — master ( b797d2...8a12fe )
by Christopher
02:10
created
src/TldCheckerServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
     {
18 18
         Validator::extend(
19 19
             'is_tld',
20
-            function ($attr, $value, $param, $validator) {
20
+            function($attr, $value, $param, $validator) {
21 21
                 return TldValidator::isTld($value);
22 22
             },
23 23
             'The :attribute field is not a valid tld.'
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
         Validator::extend(
27 27
             'ends_with_tld',
28
-            function ($attr, $value, $param, $validator) {
28
+            function($attr, $value, $param, $validator) {
29 29
                 return TldValidator::endsWithTld($value);
30 30
             },
31 31
             'The :attribute field does not end with a valid tld.'
Please login to merge, or discard this patch.
build/build.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 }
34 34
 
35 35
 $tlds = explode("\n", $root_zone_data);
36
-$tlds = array_filter($tlds, function ($tld) {
36
+$tlds = array_filter($tlds, function($tld) {
37 37
     return $tld != '';
38 38
 });
39 39
 
Please login to merge, or discard this patch.