Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Facade.php

function Facade::deferredDispatcher

2 calls to Facade::deferredDispatcher()
Facade::createDispatchingEmitter in vendor/phpunit/phpunit/src/Event/Facade.php
Facade::forward in vendor/phpunit/phpunit/src/Event/Facade.php

File

vendor/phpunit/phpunit/src/Event/Facade.php, line 147

Class

Facade
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit

Namespace

PHPUnit\Event

Code

private function deferredDispatcher() : DeferringDispatcher {
    if ($this->deferringDispatcher === null) {
        $this->deferringDispatcher = new DeferringDispatcher(new DirectDispatcher($this->typeMap()));
    }
    return $this->deferringDispatcher;
}
RSS feed
Powered by Drupal