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

Completed
Push — master ( 6f6f6a...eba369 )
by Jérémiah
13:40 queued 10:09
created

GraphiQLController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 2
Metric Value
wmc 1
c 2
b 0
f 2
lcom 1
cbo 1
dl 0
loc 12
ccs 5
cts 5
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A indexAction() 0 9 1
1
<?php
2
3
/*
4
 * This file is part of the OverblogGraphQLBundle package.
5
 *
6
 * (c) Overblog <http://github.com/overblog/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Overblog\GraphQLBundle\Controller;
13
14
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
15
16
class GraphiQLController extends Controller
17
{
18 1
    public function indexAction()
19
    {
20 1
        return $this->render(
21 1
            $this->getParameter('overblog_graphql.graphiql_template'),
22
            [
23 1
                'endpoint' => $this->generateUrl('overblog_graphql_endpoint'),
24
            ]
25 1
        );
26
    }
27
}
28