Completed
Push — master ( e32eeb...714cda )
by
unknown
89:50 queued 46:29
created

OroTestGeneratorBundle::getContainerExtension()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Oro\Bundle\TestGeneratorBundle;
4
5
use Oro\Bundle\TestGeneratorBundle\DependencyInjection\OroTestGeneratorExtension;
6
use Symfony\Component\HttpKernel\Bundle\Bundle;
7
8
class OroTestGeneratorBundle extends Bundle
9
{
10
    /**
11
     * {@inheritDoc}
12
     */
13
    public function getContainerExtension()
14
    {
15
        return new OroTestGeneratorExtension();
16
    }
17
}
18