Issues (213)

tests/_support/AcceptanceTester.php (2 issues)

Labels
Severity
1
<?php
2
/**
3
 * Server module for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-server
6
 * @package   hipanel-module-server
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\server\tests\_support;
12
13
/**
14
 * Inherited Methods.
15
 * @method void wantToTest($text)
16
 * @method void wantTo($text)
17
 * @method void execute($callable)
18
 * @method void expectTo($prediction)
19
 * @method void expect($prediction)
20
 * @method void amGoingTo($argumentation)
21
 * @method void am($role)
22
 * @method void lookForwardTo($achieveValue)
23
 * @method void comment($description)
24
 * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
25
 *
26
 * @SuppressWarnings(PHPMD)
27
 */
28
class AcceptanceTester extends \Codeception\Actor
0 ignored issues
show
The type Codeception\Actor 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...
29
{
30
    use _generated\AcceptanceTesterActions;
0 ignored issues
show
The type hipanel\modules\server\t...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...
31
32
    /**
33
     * Define custom actions here.
34
     */
35
}
36