Method |
Description |
|
__construct ( ) |
Constructor. |
|
addPass ( Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface $pass, string $type = self::TYPE_BEFORE_OPTIMIZATION ) |
Adds a pass. |
|
getAfterRemovingPasses ( ) : array |
Gets all passes for the AfterRemoving pass. |
|
getBeforeOptimizationPasses ( ) : array |
Gets all passes for the BeforeOptimization pass. |
|
getBeforeRemovingPasses ( ) : array |
Gets all passes for the BeforeRemoving pass. |
|
getMergePass ( ) : array |
Gets all passes for the Merge pass. |
|
getOptimizationPasses ( ) : array |
Gets all passes for the Optimization pass. |
|
getPasses ( ) : array |
Returns all passes in order to be processed. |
|
getRemovingPasses ( ) : array |
Gets all passes for the Removing pass. |
|
setAfterRemovingPasses ( array $passes ) |
Sets the AfterRemoving passes. |
|
setBeforeOptimizationPasses ( array $passes ) |
Sets the BeforeOptimization passes. |
|
setBeforeRemovingPasses ( array $passes ) |
Sets the BeforeRemoving passes. |
|
setMergePass ( Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface $pass ) |
Sets the Merge Pass. |
|
setOptimizationPasses ( array $passes ) |
Sets the Optimization passes. |
|
setRemovingPasses ( array $passes ) |
Sets the Removing passes. |
|