Completed
Push — master ( 9be7c8...47e291 )
by
unknown
05:44
created

ModeraBackendSecurityAppKernel   B

Complexity

Total Complexity 1

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 17

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 17
dl 0
loc 30
rs 7.8571

1 Method

Rating   Name   Duplication   Size   Complexity  
B registerBundles() 0 27 1
1
<?php
2
3
use Symfony\Component\HttpKernel\Kernel;
4
use Symfony\Component\Config\Loader\LoaderInterface;
5
6
class ModeraBackendSecurityAppKernel extends \Modera\FoundationBundle\Testing\AbstractFunctionalKernel
7
{
8
    public function registerBundles()
9
    {
10
        return array(
11
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
12
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
13
            new Symfony\Bundle\TwigBundle\TwigBundle(),
14
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
15
            new Modera\TranslationsBundle\ModeraTranslationsBundle(),
16
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
17
18
            new Sli\ExtJsIntegrationBundle\SliExtJsIntegrationBundle(),
19
            new Sli\AuxBundle\SliAuxBundle(),
20
            new Sli\ExpanderBundle\SliExpanderBundle($this),
21
22
            new Modera\FoundationBundle\ModeraFoundationBundle(),
23
            new Modera\MjrIntegrationBundle\ModeraMjrIntegrationBundle(),
24
25
            new Modera\DirectBundle\ModeraDirectBundle(),
26
            new Modera\SecurityBundle\ModeraSecurityBundle(),
27
            new Modera\BackendToolsBundle\ModeraBackendToolsBundle(),
28
            new Modera\ActivityLoggerBundle\ModeraActivityLoggerBundle(),
29
30
            new Modera\ServerCrudBundle\ModeraServerCrudBundle(),
31
32
            new Modera\BackendSecurityBundle\ModeraBackendSecurityBundle(),
33
        );
34
    }
35
}
36