1 | <?php |
||
9 | abstract class AbstractCompilerPass implements CompilerPassInterface |
||
10 | { |
||
11 | /** |
||
12 | * @param string $serviceId |
||
13 | * @param $actualClassName |
||
14 | * @param string $expectedClassName |
||
15 | * @param string $tagName |
||
16 | */ |
||
17 | protected function validateServiceClass($actualClassName, $expectedClassName, $serviceId, $tagName) |
||
28 | |||
29 | /** |
||
30 | * @param array $actualAttributes |
||
31 | * @param array $expectedAttributeNames |
||
32 | * @param string $serviceId |
||
33 | * @param string $tagName |
||
34 | */ |
||
35 | protected function validateTagAttributes(array $actualAttributes, array $expectedAttributeNames, $serviceId, $tagName) |
||
47 | } |
||
48 |