You are here

public function PassConfig::getPasses in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Compiler/PassConfig.php \Symfony\Component\DependencyInjection\Compiler\PassConfig::getPasses()

Returns all passes in order to be processed.

Return value

array An array of all passes to process

File

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

Class

PassConfig
Compiler Pass Configuration.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function getPasses() {
  return array_merge(array(
    $this->mergePass,
  ), $this->beforeOptimizationPasses, $this->optimizationPasses, $this->beforeRemovingPasses, $this->removingPasses, $this->afterRemovingPasses);
}