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.

Configuration   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
eloc 17
c 3
b 0
f 0
dl 0
loc 28
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A addPaginationSection() 0 13 1
A getConfigTreeBuilder() 0 11 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * (c) Christian Gripp <[email protected]>
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 Core23\Twig\Bridge\Symfony\DependencyInjection;
13
14
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
15
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
16
use Symfony\Component\Config\Definition\ConfigurationInterface;
17
18
final class Configuration implements ConfigurationInterface
19
{
20
    public function getConfigTreeBuilder()
21
    {
22
        $treeBuilder = new TreeBuilder('core23_twig');
23
24
        $rootNode = $treeBuilder->getRootNode();
25
26
        \assert($rootNode instanceof ArrayNodeDefinition);
27
28
        $this->addPaginationSection($rootNode);
29
30
        return $treeBuilder;
31
    }
32
33
    private function addPaginationSection(ArrayNodeDefinition $node): void
34
    {
35
        $node
36
            ->children()
37
                ->arrayNode('pagination')
38
                    ->addDefaultsIfNotSet()
39
                    ->children()
40
                        ->scalarNode('template')->defaultValue('@Core23Twig/Pager/pagination.html.twig')->end()
41
                        ->scalarNode('extremeLimit')->defaultValue(3)->end()
0 ignored issues
show
Bug introduced by
The method scalarNode() does not exist on Symfony\Component\Config...der\NodeParentInterface. It seems like you code against a sub-type of Symfony\Component\Config...der\NodeParentInterface such as Symfony\Component\Config...ion\Builder\NodeBuilder. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

41
                        ->/** @scrutinizer ignore-call */ scalarNode('extremeLimit')->defaultValue(3)->end()
Loading history...
42
                        ->scalarNode('nearbyLimit')->defaultValue(2)->end()
43
                    ->end()
44
                ->end()
45
            ->end()
46
        ;
47
    }
48
}
49