| 1 | <?php |
||
| 16 | class CompilerPass extends Service |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | public $priority = 3; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @see PassConfig::TYPE_* |
||
| 26 | * @var string|null |
||
| 27 | */ |
||
| 28 | public $type = PassConfig::TYPE_BEFORE_OPTIMIZATION; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 1 | public static function getBuilder(ContainerBuilder $container, Reader $reader) |
|
| 37 | } |
||
| 38 |