public function PassConfig::getPasses in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\CompilerCode
public function getPasses() {
return array_merge(array(
$this->mergePass,
), $this->beforeOptimizationPasses, $this->optimizationPasses, $this->beforeRemovingPasses, $this->removingPasses, $this->afterRemovingPasses);
}