Completed
Push — master ( 9ed240...526dfe )
by Razon
02:55
created

tests/_support/AcceptanceTester.php (1 issue)

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