Passed
Push — v3 ( 2b006a...43f239 )
by Andrew
33:34 queued 16:32
created

tests/_support/FunctionalTester.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Retour plugin for Craft CMS 3.x
4
 *
5
 * Retour allows you to intelligently redirect legacy URLs, so that you don't
6
 * lose SEO value when rebuilding & restructuring a website
7
 *
8
 * @link      https://nystudio107.com/
9
 * @copyright Copyright (c) 2018 nystudio107
10
 */
11
12
use Codeception\Actor;
13
use Codeception\Lib\Friend;
14
15
/**
16
 * Inherited Methods
17
 *
18
 * @method void wantToTest($text)
19
 * @method void wantTo($text)
20
 * @method void execute($callable)
21
 * @method void expectTo($prediction)
22
 * @method void expect($prediction)
23
 * @method void amGoingTo($argumentation)
24
 * @method void am($role)
25
 * @method void lookForwardTo($achieveValue)
26
 * @method void comment($description)
27
 * @method Friend haveFriend($name, $actorClass = null)
28
 *
29
 * @SuppressWarnings(PHPMD)
30
 *
31
 */
32
class FunctionalTester extends Actor
33
{
34
    use _generated\FunctionalTesterActions;
0 ignored issues
show
The type _generated\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...
35
36
}
37