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.

Issues (2)

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
    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
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