Updated to Laravel 5

This commit is contained in:
Rob Gloudemans
2014-10-06 11:04:17 +02:00
parent 909d54baa6
commit af184d3e47
4 changed files with 20 additions and 18 deletions

View File

@@ -18,7 +18,7 @@ class CartTest extends PHPUnit_Framework_TestCase {
public function setUp()
{
$session= new SessionMock;
$this->events = m::mock('Illuminate\Events\Dispatcher');
$this->events = m::mock('Illuminate\Contracts\Events\Dispatcher');
$this->cart = new Cart($session, $this->events);
}