Issues (10)

tests/Support/FunctionalTester.php (1 issue)

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