2014-02-18 18:15:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the Symfony package.
|
|
|
|
*
|
|
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Symfony\Component\EventDispatcher\Tests;
|
|
|
|
|
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
|
|
|
2015-01-19 11:11:45 +01:00
|
|
|
class EventDispatcherTest extends AbstractEventDispatcherTest
|
2014-02-18 18:15:12 +01:00
|
|
|
{
|
2015-01-19 11:11:45 +01:00
|
|
|
protected function createEventDispatcher()
|
2014-02-18 18:15:12 +01:00
|
|
|
{
|
2015-01-19 11:11:45 +01:00
|
|
|
return new EventDispatcher();
|
2014-02-18 18:15:12 +01:00
|
|
|
}
|
|
|
|
}
|