Total Complexity | 1 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
21 | class Plugin extends CheckPluginAbstract |
||
22 | { |
||
23 | const DESCR = |
||
24 | <<<'TXT' |
||
25 | rabbit_mq description |
||
26 | TXT; |
||
27 | |||
28 | const PATH = __DIR__; |
||
29 | |||
30 | const GROUP = 'rabbit_mq'; |
||
31 | const CHECK_NAME = 'core:rabbit_mq:queue_consumer'; |
||
32 | |||
33 | /** |
||
34 | * @param NodeDefinition|ArrayNodeDefinition $node |
||
35 | * |
||
36 | * @return NodeDefinition|ArrayNodeDefinition |
||
37 | */ |
||
38 | 56 | protected function _check(NodeDefinition $node): NodeDefinition |
|
63 |