Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
19 | 1 | public function loadConfiguration() |
|
20 | { |
||
21 | 1 | $builder = $this->getContainerBuilder(); |
|
22 | |||
23 | 1 | $builder->addDefinition($this->prefix('listener')) |
|
24 | 1 | ->setClass('Gedmo\Tree\TreeListener') |
|
25 | 1 | ->addSetup('setAnnotationReader', ['@Doctrine\Common\Annotations\Reader']) |
|
26 | 1 | ->addTag(EventsExtension::TAG_SUBSCRIBER); |
|
27 | 1 | } |
|
28 | |||
30 |