Completed
Push — master ( 329115...539a70 )
by Propa
05:34
created
src/helpers.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
      *
Please login to merge, or discard this patch.
src/Proxies/Date.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -343,7 +343,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.