@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | use Illuminate\Support\Facades\App; |
| 4 | 4 | use libphonenumber\PhoneNumberFormat; |
| 5 | 5 | |
| 6 | -if (! function_exists('phone')) { |
|
| 6 | +if (!function_exists('phone')) { |
|
| 7 | 7 | /** |
| 8 | 8 | * Get the PhoneNumberUtil or format a phone number for display. |
| 9 | 9 | * |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | { |
| 14 | 14 | $lib = App::make('libphonenumber'); |
| 15 | 15 | |
| 16 | - if (! $arguments = func_get_args()) { |
|
| 16 | + if (!$arguments = func_get_args()) { |
|
| 17 | 17 | return $lib; |
| 18 | 18 | } |
| 19 | 19 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | } |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | -if (! function_exists('phone_format')) { |
|
| 31 | +if (!function_exists('phone_format')) { |
|
| 32 | 32 | /** |
| 33 | 33 | * Formats a phone number and country for display. |
| 34 | 34 | * |