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.

Code Duplication    Length = 10-11 lines in 2 locations

tests/DependencyInjection/Compiler/SitemapCompilerPassTest.php 2 locations

@@ 77-87 (lines=11) @@
74
        $this->definitionManager->addMethodCall('addDefintion', Argument::any())->shouldNotHaveBeenCalled();
75
    }
76
77
    public function testProcessWithNoServices(): void
78
    {
79
        $this->container->setParameter('core23_sitemap.static_urls', []);
80
81
        $compiler = new SitemapCompilerPass();
82
        $compiler->process($this->container);
83
84
        static::assertSame([], $this->container->getParameter('core23_sitemap.static_urls'));
85
86
        $this->definitionManager->addMethodCall('addDefintion', Argument::any())->shouldNotHaveBeenCalled();
87
    }
88
89
    public function testProcessWithStaticUrls(): void
90
    {
@@ 118-127 (lines=10) @@
115
        $compiler->process($this->container);
116
    }
117
118
    public function testProcessWithEmptyGroups(): void
119
    {
120
        $this->container->setParameter('core23_sitemap.static_urls', []);
121
122
        $compiler = new SitemapCompilerPass();
123
        $compiler->process($this->container);
124
125
        $this->serviceManager->addMethodCall(Argument::any())->shouldNotBeCalled();
126
        $this->definitionManager->addMethodCall(Argument::any())->shouldNotBeCalled();
127
    }
128
}
129