Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — master ( 1dd833...8b26b2 )
by Jérémiah
16:34
created

ContainerBuilder::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Overblog\GraphQLBundle\Benchmarks\Mock;
4
5
use Symfony\Component\Config\Resource\ResourceInterface;
6
use Symfony\Component\DependencyInjection\ContainerBuilder as BaseContainerBuilder;
7
8
class ContainerBuilder extends BaseContainerBuilder
9
{
10
    public function __construct()
11
    {
12
    }
13
14
    public function addResource(ResourceInterface $resource)
15
    {
16
        return $this;
17
    }
18
}
19