updated eventdispatcher

This commit is contained in:
kremsy
2015-01-19 11:11:45 +01:00
parent 0ca7d2dd15
commit f97109a75b
18 changed files with 123 additions and 426 deletions

View File

@ -18,7 +18,6 @@ use Symfony\Component\EventDispatcher\GenericEvent;
*/
class GenericEventTest extends \PHPUnit_Framework_TestCase
{
/**
* @var GenericEvent
*/
@ -34,7 +33,7 @@ class GenericEventTest extends \PHPUnit_Framework_TestCase
parent::setUp();
$this->subject = new \stdClass();
$this->event = new GenericEvent($this->subject, array('name' => 'Event'), 'foo');
$this->event = new GenericEvent($this->subject, array('name' => 'Event'));
}
/**
@ -54,7 +53,7 @@ class GenericEventTest extends \PHPUnit_Framework_TestCase
}
/**
* Tests Event->getArgs()
* Tests Event->getArgs().
*/
public function testGetArguments()
{