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
Pull Request — master (#5)
by Jérémiah
07:11
created

ResolverResolver::resolve()   B

Complexity

Conditions 6
Paths 12

Size

Total Lines 29
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 20
CRAP Score 6.0038
Metric Value
dl 0
loc 29
ccs 20
cts 21
cp 0.9524
rs 8.439
cc 6
eloc 17
nc 12
nop 1
crap 6.0038
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\Resolver;
13
14
class ResolverResolver extends AbstractProxyResolver
15
{
16 1
    protected function unresolvableMessage($alias)
17
    {
18 1
        return sprintf('Unknown resolver with alias "%s" (verified service tag)', $alias);
19
    }
20
}
21