class StaticClassFixture

Hierarchy

Expanded class hierarchy of StaticClassFixture

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Debug/ContainerAwareTraceableEventDispatcherTest.php, line 72

Namespace

Symfony\Component\HttpKernel\Tests\Debug
View source
class StaticClassFixture {
  public static $called = false;
  public static function staticListener($event) {
    self::$called = true;
  }

}

Members