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

OroTestGeneratorBundle   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 10
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getContainerExtension() 0 4 1
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