getContainer() public method

Returns the container this event dispatcher is attached to
public getContainer ( ) : Container
return FOF30\Container\Container
Beispiel #1
0
 /**
  * @covers FOF30\Event\Dispatcher::getContainer
  */
 public function testGetContainer()
 {
     $actual = $this->object->getContainer();
     $this->assertEquals(static::$container, $actual);
 }