mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-21 23:05:05 +00:00
Fixed tests
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user