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 ( 4edf76...a91441 )
by Bruno
21:43
created

YumlBundle/Controller/YumlControllerTest.php (1 issue)

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
namespace OnurbTest\Bundle\YumlBundle\Controller;
4
5
use Onurb\Bundle\YumlBundle\Controller\YumlController;
6
use PHPUnit\Framework\TestCase;
7
use Symfony\Component\DependencyInjection\ContainerInterface;
8
use Symfony\Component\HttpFoundation\RedirectResponse;
9
10
class YumlControllerTest extends TestCase
11
{
12
13
    /**
14
     * @var ContainerInterface
15
     */
16
    protected $container;
17
18
    /**
19
     * @var string
20
     */
21
    protected $controllerName = 'Onurb\\Bundle\\YumlBundle\\Controller\\YumlController';
22
23
    /**
24
     * @covers YumlController
25
     */
26
    public function testIndexAction()
27
    {
28
        $yumlClient = $this->createMock('Onurb\\Bundle\\YumlBundle\\Yuml\\YumlClientInterface');
29
30
        $yumlClient->expects($this->once())
31
            ->method('makeDslText')
32
            ->will($this->returnValue('[Simple.Entity|+a;b;c]'));
33
34
        $yumlClient->expects($this->once())
35
            ->method('getGraphUrl')
36
            ->will($this->returnValue('https://yuml.me/15a98c92.png'));
37
38
        $this->container = $this->createMock('Symfony\\Component\\DependencyInjection\\ContainerInterface');
0 ignored issues
show
Documentation Bug introduced by
It seems like $this->createMock('Symfo...n\\ContainerInterface') of type object<PHPUnit\Framework\MockObject\MockObject> is incompatible with the declared type object<Symfony\Component...ion\ContainerInterface> of property $container.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
39
40
        $this->container->expects($this->once())->method('get')
41
            ->with($this->matches('onurb_yuml.client'))
42
            ->will($this->returnValue($yumlClient));
43
44
        $this->container->expects($this->any())->method('getParameter')
45
            ->will(
46
                $this->returnCallback(
47
                    function ($arg) {
48
                        switch ($arg) {
49
                            case 'onurb_yuml.show_fields_description':
50
                                return false;
51
                            case 'onurb_yuml.colors':
52
                            case 'onurb_yuml.notes':
53
                                return array();
54
                            default:
55
                                return false;
56
                        }
57
                    }
58
                )
59
            );
60
61
        $controller = $this->createController();
62
63
        $response = $controller->indexAction();
64
65
        $this->assertTrue($response instanceof RedirectResponse);
66
    }
67
68
    protected function createController()
69
    {
70
        /**
71
         * @var YumlController $controller
72
         */
73
        $controller = new $this->controllerName;
74
        $controller->setContainer($this->container);
75
76
        return($controller);
77
    }
78
}
79