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.
Completed
Push — master ( 6c5077...d22a37 )
by Christian
01:33
created

tests/Core23SitemapBundleTest.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * (c) Christian Gripp <[email protected]>
5
 *
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Core23\SitemapBundle\Tests;
11
12
use Core23\SitemapBundle\Core23SitemapBundle;
13
use Core23\SitemapBundle\DependencyInjection\Compiler\SitemapCompilerPass;
14
use PHPUnit\Framework\TestCase;
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
17
class Core23SitemapBundleTest extends TestCase
18
{
19
    public function testItIsInstantiable(): void
20
    {
21
        $bundle = new Core23SitemapBundle();
22
23
        $this->assertInstanceOf(Core23SitemapBundle::class, $bundle);
24
    }
25
26
    public function testBuild(): void
27
    {
28
        $containerBuilder = $this->createMock(ContainerBuilder::class);
29
30
        $containerBuilder->expects($this->once())->method('addCompilerPass')
31
            ->with($this->isInstanceOf(SitemapCompilerPass::class))
32
        ;
33
34
        $bundle = new Core23SitemapBundle();
35
        $bundle->build($containerBuilder);
0 ignored issues
show
$containerBuilder is of type object<PHPUnit\Framework\MockObject\MockObject>, but the function expects a object<Symfony\Component...ction\ContainerBuilder>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
36
    }
37
}
38