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.
Passed
Push — master ( 074ced...44b942 )
by Christian
03:04
created

Symfony/DependencyInjection/Configuration.php (1 issue)

Labels
Severity
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
    /**
21
     * {@inheritdoc}
22
     */
23
    public function getConfigTreeBuilder()
24
    {
25
        $treeBuilder = new TreeBuilder('core23_twig');
26
27
        // Keep compatibility with symfony/config < 4.2
28
        if (!method_exists($treeBuilder, 'getRootNode')) {
29
            $rootNode = $treeBuilder->root('core23_twig');
30
        } else {
31
            $rootNode = $treeBuilder->getRootNode();
32
        }
33
        \assert($rootNode instanceof ArrayNodeDefinition);
34
35
        $this->addPaginationSection($rootNode);
36
37
        return $treeBuilder;
38
    }
39
40
    /**
41
     * @param ArrayNodeDefinition $node
42
     */
43
    private function addPaginationSection(ArrayNodeDefinition $node): void
44
    {
45
        $node
46
            ->children()
47
                ->arrayNode('pagination')
48
                    ->addDefaultsIfNotSet()
49
                    ->children()
50
                        ->scalarNode('template')->defaultValue('@Core23Twig/Pager/pagination.html.twig')->end()
51
                        ->scalarNode('extremeLimit')->defaultValue(3)->end()
0 ignored issues
show
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

51
                        ->/** @scrutinizer ignore-call */ scalarNode('extremeLimit')->defaultValue(3)->end()
Loading history...
52
                        ->scalarNode('nearbyLimit')->defaultValue(2)->end()
53
                    ->end()
54
                ->end()
55
            ->end()
56
        ;
57
    }
58
}
59