You are here

class TestWithDispatcher in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php \Symfony\Component\EventDispatcher\Tests\TestWithDispatcher

Hierarchy

Expanded class hierarchy of TestWithDispatcher

File

vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php, line 342

Namespace

Symfony\Component\EventDispatcher\Tests
View source
class TestWithDispatcher {
  public $name;
  public $dispatcher;
  public function foo(Event $e, $name, $dispatcher) {
    $this->name = $name;
    $this->dispatcher = $dispatcher;
  }

}

Members