Skip to content

Commit 53b94ca

Browse files
authored
Merge pull request #43 from schelmo/master
laravel 5.4 compatibility
2 parents 2d48533 + 577a678 commit 53b94ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Payum/LaravelPackage/PayumServiceProvider.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -85,19 +85,19 @@ protected function registerServices()
8585
return $builder;
8686
});
8787

88-
$this->app['payum'] = $this->app->share(function($app) {
88+
$this->app->singleton('payum', function($app) {
8989
return $app['payum.builder']->getPayum();
9090
});
9191

92-
$this->app['payum.converter.reply_to_http_response'] = $this->app->share(function($app) {
92+
$this->app->singleton('payum.converter.reply_to_http_response', function($app) {
9393
return new ReplyToSymfonyResponseConverter();
9494
});
9595

96-
$this->app['payum.action.get_http_request'] = $this->app->share(function($app) {
96+
$this->app->singleton('payum.action.get_http_request', function($app) {
9797
return new GetHttpRequestAction();
9898
});
9999

100-
$this->app['payum.action.obtain_credit_card'] = $this->app->share(function($app) {
100+
$this->app->singleton('payum.action.obtain_credit_card', function($app) {
101101
return new ObtainCreditCardAction();
102102
});
103103
}
@@ -134,4 +134,4 @@ protected function defineRoutes()
134134
'uses' => 'Payum\LaravelPackage\Controller\NotifyController@doUnsafeAction'
135135
));
136136
}
137-
}
137+
}

0 commit comments

Comments
 (0)