@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | use Propaganistas\LaravelIntl\Date; |
| 4 | 4 | |
| 5 | -if (! function_exists('country')) { |
|
| 5 | +if (!function_exists('country')) { |
|
| 6 | 6 | /** |
| 7 | 7 | * Get a localized country name. |
| 8 | 8 | * |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -if (! function_exists('currency')) { |
|
| 22 | +if (!function_exists('currency')) { |
|
| 23 | 23 | /** |
| 24 | 24 | * Get a localized currency or currency amount. |
| 25 | 25 | * |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | -if (! function_exists('carbon')) { |
|
| 44 | +if (!function_exists('carbon')) { |
|
| 45 | 45 | /** |
| 46 | 46 | * Get a localized Carbon instance. |
| 47 | 47 | * |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | -if (! function_exists('language')) { |
|
| 62 | +if (!function_exists('language')) { |
|
| 63 | 63 | /** |
| 64 | 64 | * Get a localized language name. |
| 65 | 65 | * |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | } |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | -if (! function_exists('number')) { |
|
| 79 | +if (!function_exists('number')) { |
|
| 80 | 80 | /** |
| 81 | 81 | * Get a formatted localized number. |
| 82 | 82 | * |
@@ -343,7 +343,7 @@ |
||
| 343 | 343 | |
| 344 | 344 | $carbon = $this; |
| 345 | 345 | |
| 346 | - return call_user_func(function () use ($carbon) { |
|
| 346 | + return call_user_func(function() use ($carbon) { |
|
| 347 | 347 | return get_object_vars($carbon); |
| 348 | 348 | }); |
| 349 | 349 | } |