Skip to content

Commit

Permalink
routes.php is set to default
Browse files Browse the repository at this point in the history
  • Loading branch information
kdocki committed May 15, 2014
1 parent 3c17180 commit b106e01
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions app/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,5 @@

Route::get('/', function()
{
$user = new User;
$cart = new Cart;
$lineitems = array();

$lineitems[] = new Lineitem('item 1337');
$lineitems[] = new Lineitem('item 231');
$lineitems[] = new Lineitem('item 432');

return $cart->checkout($user, $lineitems);
});
return View::make('hello');
});

0 comments on commit b106e01

Please sign in to comment.