Issues (3627)

tests/_support/AcceptanceTester.php (1 issue)

1
<?php
2
3
4
/**
5
 * Inherited Methods.
6
 *
7
 * @method void wantToTest($text)
8
 * @method void wantTo($text)
9
 * @method void execute($callable)
10
 * @method void expectTo($prediction)
11
 * @method void expect($prediction)
12
 * @method void amGoingTo($argumentation)
13
 * @method void am($role)
14
 * @method void lookForwardTo($achieveValue)
15
 * @method void comment($description)
16
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
17
 *
18
 * @SuppressWarnings(PHPMD)
19
 */
20
class AcceptanceTester extends \Codeception\Actor
21
{
22
    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...
23
24
   /*
25
    * Define custom actions here
26
    */
27
}
28