GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

WorkflowExtensionsBundle   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A build() 0 5 1
1
<?php
2
/**
3
 * This file is part of the Global Trading Technologies Ltd workflow-extension-bundle package.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 *
8
 * (c) fduch <[email protected]>
9
 * @date 17.07.15
10
 */
11
12
namespace Gtt\Bundle\WorkflowExtensionsBundle;
13
14
use Gtt\Bundle\WorkflowExtensionsBundle\DependencyInjection\Compiler\CheckSubjectManipulatorConfigPass;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use Symfony\Component\HttpKernel\Bundle\Bundle;
17
18
/**
19
 * Bundle class
20
 */
21
class WorkflowExtensionsBundle extends Bundle
22
{    /**
0 ignored issues
show
Coding Style introduced by
The opening class brace should be on a newline by itself.
Loading history...
23
     * {@inheritdoc}
24
     */
25
    public function build(ContainerBuilder $container)
26
    {
27
        parent::build($container);
28
        $container->addCompilerPass(new CheckSubjectManipulatorConfigPass());
29
    }
30
}