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

Breadcrumb

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

function PassConfig::getPasses

Returns all passes in order to be processed.

Return value

CompilerPassInterface[]

File

vendor/symfony/dependency-injection/Compiler/PassConfig.php, line 111

Class

PassConfig
Compiler Pass Configuration.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function getPasses() : array {
    return array_merge([
        $this->mergePass,
    ], $this->getBeforeOptimizationPasses(), $this->getOptimizationPasses(), $this->getBeforeRemovingPasses(), $this->getRemovingPasses(), $this->getAfterRemovingPasses());
}
RSS feed
Powered by Drupal