Passed
Push — master ( 89381b...73ea87 )
by Christopher
01:56
created
build/build.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 }
30 30
 
31 31
 $tlds = explode("\n", $root_zone_data);
32
-$tlds = array_filter($tlds, function ($tld) {
32
+$tlds = array_filter($tlds, function($tld) {
33 33
     return $tld != '';
34 34
 });
35 35
 $root_zone_data_version = array_shift($tlds);
Please login to merge, or discard this patch.
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.