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