Issues (13)

tests/Support/CliTester.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Tests\Support;
6
7
use Codeception\Actor;
8
9
/**
10
 * Inherited Methods
11
 *
12
 * @method void wantToTest($text)
13
 * @method void wantTo($text)
14
 * @method void execute($callable)
15
 * @method void expectTo($prediction)
16
 * @method void expect($prediction)
17
 * @method void amGoingTo($argumentation)
18
 * @method void am($role)
19
 * @method void lookForwardTo($achieveValue)
20
 * @method void comment($description)
21
 * @method void pause()
22
 *
23
 * @SuppressWarnings(PHPMD)
24
*/
25
class CliTester extends Actor
26
{
27
    use _generated\CliTesterActions;
0 ignored issues
show
The type App\Tests\Support\_generated\CliTesterActions 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...
28
29
    /**
30
     * Define custom actions here
31
     */
32
}
33