| 1 | <?php |
||
| 7 | class FormRuleCompiler implements FormRuleCompilerInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var FormRuleCompilerInterface[] |
||
| 11 | */ |
||
| 12 | protected $compilers = array(); |
||
| 13 | |||
| 14 | 5 | public function __construct(array $compilers) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @param FormRuleContextBuilder $formRuleContext |
||
| 23 | */ |
||
| 24 | 1 | public function compile(FormRuleContextBuilder $formRuleContext) |
|
| 30 | |||
| 31 | 1 | private function addCompiler(FormRuleCompilerInterface $compiler) |
|
| 35 | } |
||
| 36 |