File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -85,19 +85,19 @@ protected function registerServices()
85
85
return $ builder ;
86
86
});
87
87
88
- $ this ->app [ 'payum ' ] = $ this -> app -> share ( function ($ app ) {
88
+ $ this ->app -> singleton ( 'payum ' , function ($ app ) {
89
89
return $ app ['payum.builder ' ]->getPayum ();
90
90
});
91
91
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 ) {
93
93
return new ReplyToSymfonyResponseConverter ();
94
94
});
95
95
96
- $ this ->app [ 'payum.action.get_http_request ' ] = $ this -> app -> share ( function ($ app ) {
96
+ $ this ->app -> singleton ( 'payum.action.get_http_request ' , function ($ app ) {
97
97
return new GetHttpRequestAction ();
98
98
});
99
99
100
- $ this ->app [ 'payum.action.obtain_credit_card ' ] = $ this -> app -> share ( function ($ app ) {
100
+ $ this ->app -> singleton ( 'payum.action.obtain_credit_card ' , function ($ app ) {
101
101
return new ObtainCreditCardAction ();
102
102
});
103
103
}
@@ -134,4 +134,4 @@ protected function defineRoutes()
134
134
'uses ' => 'Payum\LaravelPackage\Controller\NotifyController@doUnsafeAction '
135
135
));
136
136
}
137
- }
137
+ }
You can’t perform that action at this time.
0 commit comments