Completed
Push — master ( cd5e5a...6f1d48 )
by Propa
22:11
created
src/IntlServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected function registerCountryRepository()
44 44
     {
45
-        $this->app->singleton(CountryRepository::class, function ($app) {
45
+        $this->app->singleton(CountryRepository::class, function($app) {
46 46
             $repository = new CountryRepository;
47 47
             $repository->setDefaultLocale($app['config']['app.locale']);
48 48
             $repository->setFallbackLocale($app['config']['app.fallback_locale']);
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     protected function registerCurrencyRepository()
62 62
     {
63
-        $this->app->singleton(CurrencyRepository::class, function ($app) {
63
+        $this->app->singleton(CurrencyRepository::class, function($app) {
64 64
             $repository = new CurrencyRepository;
65 65
             $repository->setDefaultLocale($app['config']['app.locale']);
66 66
             $repository->setFallbackLocale($app['config']['app.fallback_locale']);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      */
79 79
     protected function registerLanguageRepository()
80 80
     {
81
-        $this->app->singleton(LanguageRepository::class, function ($app) {
81
+        $this->app->singleton(LanguageRepository::class, function($app) {
82 82
             $repository = new LanguageRepository;
83 83
             $repository->setDefaultLocale($app['config']['app.locale']);
84 84
             $repository->setFallbackLocale($app['config']['app.fallback_locale']);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     protected function registerNumberRepository()
98 98
     {
99
-        $this->app->singleton(NumberFormatRepository::class, function ($app) {
99
+        $this->app->singleton(NumberFormatRepository::class, function($app) {
100 100
             $repository = new NumberFormatRepository;
101 101
             $repository->setDefaultLocale($app['config']['app.locale']);
102 102
             $repository->setFallbackLocale($app['config']['app.fallback_locale']);
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
         \Jenssegers\Date\Date::setFallbackLocale($this->app['config']['app.fallback_locale']);
120 120
 
121
-        $this->app->singleton(Carbon::class, function () {
121
+        $this->app->singleton(Carbon::class, function() {
122 122
             return new Date;
123 123
         });
124 124
 
Please login to merge, or discard this patch.