Completed
Push — master ( ae7fb3...9ade78 )
by Propa
9s
created
src/LaravelPhoneServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function register()
32 32
     {
33 33
         // Make libphonenumber available in the application container.
34
-        $this->app->singleton('libphonenumber', function ($app) {
34
+        $this->app->singleton('libphonenumber', function($app) {
35 35
             return PhoneNumberUtil::getInstance();
36 36
         });
37 37
     }
Please login to merge, or discard this patch.
src/PhoneValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     {
73 73
         $countryField = $this->checkCountryField($parameters, $validator);
74 74
 
75
-        $filterCountryFieldCallback = function ($value) use ($countryField) {
75
+        $filterCountryFieldCallback = function($value) use ($countryField) {
76 76
             return $value !== $countryField;
77 77
         };
78 78
 
Please login to merge, or discard this patch.