Symfony\Component\DependencyInjection\Compiler\PassConfig::getPasses PHP Method

getPasses() public method

Returns all passes in order to be processed.
public getPasses ( ) : array
return array An array of all passes to process
    public function getPasses()
    {
        return array_merge(
            array($this->mergePass),
            $this->beforeOptimizationPasses,
            $this->optimizationPasses,
            $this->beforeRemovingPasses,
            $this->removingPasses,
            $this->afterRemovingPasses
        );
    }