Issues (9)

tests/TestCase.php (2 issues)

1
<?php
2
3
namespace Noitran\Lumen\Horizon\Tests;
4
5
use Noitran\Lumen\Horizon\HorizonServiceProvider;
6
use Orchestra\Testbench\TestCase as OrchestraTestCase;
7
8
/**
9
 * Class TestCase
10
 */
11
abstract class TestCase extends OrchestraTestCase
12
{
13
    /**
14
     * @param \Laravel\Lumen\Application $app
0 ignored issues
show
The type Laravel\Lumen\Application 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...
15
     *
16
     * @return array
17
     */
18
    protected function getPackageProviders($app): array
0 ignored issues
show
The parameter $app is not used and could be removed. ( Ignorable by Annotation )

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

18
    protected function getPackageProviders(/** @scrutinizer ignore-unused */ $app): array

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
19
    {
20
        return [
21
            HorizonServiceProvider::class,
22
        ];
23
    }
24
}
25