@@ -16,7 +16,7 @@ discard block |
||
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 |
||
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 |
||
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 | }); |