Skip to content

Commit

Permalink
Fixed codenitive#1: It should be Route::*
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed May 31, 2012
1 parent f1a6cce commit 3af4a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
|--------------------------------------------------------------------------
*/

Request::post('(:bundle)/callback', function ()
Route::post('(:bundle)/callback', function ()
{
return Controller::call('molpay::callback@index');
});

Request::post('(:bundle)/push', function ()
Route::post('(:bundle)/push', function ()
{
return Controller::call('molpay::callback@push');
});

0 comments on commit 3af4a96

Please sign in to comment.