Passed
Branch master (797e65)
by Marcus
03:37
created
Category
src/IdentityNumberServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         /**
17 17
          * Extend the Laravel Validator with the "identity_number" rule
18 18
          */
19
-        $this->app['validator']->extend('identity_number', function ($attribute, $value, $parameters)
19
+        $this->app['validator']->extend('identity_number', function($attribute, $value, $parameters)
20 20
         {
21 21
             return Pin::isValid($value, 'identity');
22 22
         });
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
         /**
25 25
          * Extend the Laravel Validator with the "organization_number" rule
26 26
          */
27
-        $this->app['validator']->extend('organization_number', function ($attribute, $value, $parameters)
27
+        $this->app['validator']->extend('organization_number', function($attribute, $value, $parameters)
28 28
         {
29 29
             return Pin::isValid($value, 'organization');
30 30
         });
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         /**
33 33
          * Extend the Laravel Validator with the "coordination_number" rule
34 34
          */
35
-        $this->app['validator']->extend('coordination_number', function ($attribute, $value, $parameters)
35
+        $this->app['validator']->extend('coordination_number', function($attribute, $value, $parameters)
36 36
         {
37 37
             return Pin::isValid($value, 'coordination');
38 38
         });
Please login to merge, or discard this patch.