Skip to content

Commit 8eee3f4

Browse files
committed
Merge pull request #39 from henriksjodahl/master
Make notify route accept any
2 parents 7ba0bc6 + 25b66bf commit 8eee3f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Payum/LaravelPackage/PayumServiceProvider.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,12 @@ protected function defineRoutes()
124124
'uses' => 'Payum\LaravelPackage\Controller\RefundController@doAction'
125125
));
126126

127-
$route->get('/payment/notify/{payum_token}', array(
127+
$route->any('/payment/notify/{payum_token}', array(
128128
'as' => 'payum_notify_do',
129129
'uses' => 'Payum\LaravelPackage\Controller\NotifyController@doAction'
130130
));
131131

132-
$route->get('/payment/notify/unsafe/{gateway_name}', array(
132+
$route->any('/payment/notify/unsafe/{gateway_name}', array(
133133
'as' => 'payum_notify_do_unsafe',
134134
'uses' => 'Payum\LaravelPackage\Controller\NotifyController@doUnsafeAction'
135135
));

0 commit comments

Comments
 (0)