Fixed tests

This commit is contained in:
Rob Gloudemans
2014-02-12 20:02:36 +01:00
parent 40d596c266
commit c8e37b805e
5 changed files with 195 additions and 178 deletions

View File

@@ -14,8 +14,8 @@ class ShoppingcartServiceProvider extends ServiceProvider {
$this->app['cart'] = $this->app->share(function($app)
{
$session = $app['session'];
$event = $app['events'];
return new Cart($session, $event);
$events = $app['events'];
return new Cart($session, $events);
});
}
}