Issues (36)

tests/src/AbstractTest.php (6 issues)

Labels
Severity
1
<?php
2
3
namespace ByTIC\EventDispatcher\Tests;
4
5
use ByTIC\EventDispatcher\Dispatcher\EventDispatcher;
6
use Bytic\Phpqa\PHPUnit\TestCase;
0 ignored issues
show
The type Bytic\Phpqa\PHPUnit\TestCase was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
7
use Mockery;
0 ignored issues
show
The type Mockery was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
8
use Mockery\LegacyMockInterface;
0 ignored issues
show
The type Mockery\LegacyMockInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
9
use Mockery\Mock;
0 ignored issues
show
The type Mockery\Mock was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
10
use Mockery\MockInterface;
0 ignored issues
show
The type Mockery\MockInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
use Nip\Container\Utility\Container;
12
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
13
14
/**
15
 * Class AbstractTest
16
 */
17
abstract class AbstractTest extends TestCase
18
{
19
    protected $object;
20
21
    /**
22
     * @return Mock|EventDispatcher
23
     */
24
    protected function mockDispatcherInContainer()
25
    {
26
        $dispatcher = $this->newMockDispatcher();
27
        Container::container()->set('events', $dispatcher);
0 ignored issues
show
The method set() does not exist on Psr\Container\ContainerInterface. It seems like you code against a sub-type of Psr\Container\ContainerInterface such as Symfony\Component\Depend...tion\ContainerInterface or Nip\Container\ContainerInterface or Symfony\Component\Depend...rameterBag\ContainerBag or Nip\Container\Bridges\LeagueContainer or Nip\Container\Bridges\LaravelContainer. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

27
        Container::container()->/** @scrutinizer ignore-call */ set('events', $dispatcher);
Loading history...
28
29
        return $dispatcher;
30
    }
31
32
    /**
33
     * @return LegacyMockInterface|Mock|MockInterface|EventDispatcherInterface|EventDispatcher
34
     */
35
    protected function newMockDispatcher()
36
    {
37
        $dispatcher = Mockery::mock(EventDispatcher::class)
38
            ->shouldAllowMockingProtectedMethods()
39
            ->makePartial();
40
        return $dispatcher;
41
    }
42
}
43