nanasess /
ec-cube
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 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 \Codeception\Lib\Friend haveFriend($name, $actorClass = null) |
||
| 16 | * |
||
| 17 | * @SuppressWarnings(PHPMD) |
||
| 18 | */ |
||
| 19 | class UnitTester extends \Codeception\Actor |
||
|
0 ignored issues
–
show
|
|||
| 20 | { |
||
| 21 | use _generated\UnitTesterActions; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Define custom actions here |
||
| 25 | */ |
||
| 26 | } |
||
| 27 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.