Issues (11)

tests/_support/IntegrationTester.php (1 issue)

Labels
Severity
1
<?php
2
3
/**
4
 * Inherited Methods
5
 * @method void wantToTest($text)
6
 * @method void wantTo($text)
7
 * @method void execute($callable)
8
 * @method void expectTo($prediction)
9
 * @method void expect($prediction)
10
 * @method void amGoingTo($argumentation)
11
 * @method void am($role)
12
 * @method void lookForwardTo($achieveValue)
13
 * @method void comment($description)
14
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = null)
15
 *
16
 * @SuppressWarnings(PHPMD)
17
 */
18
class IntegrationTester extends \Codeception\Actor
19
{
20
    use _generated\IntegrationTesterActions;
0 ignored issues
show
The type _generated\IntegrationTesterActions 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...
21
}
22