mirror of
https://github.com/danog/psalm-plugin-symfony.git
synced 2024-12-02 17:37:52 +01:00
247647254d
* refactor container check * no message * no message * no message
27 lines
622 B
PHP
27 lines
622 B
PHP
<?php
|
|
|
|
namespace Psalm\PhpUnitPlugin\Tests;
|
|
|
|
use Codeception\Actor;
|
|
use Codeception\Lib\Friend;
|
|
|
|
/**
|
|
* Inherited Methods
|
|
* @method void wantToTest($text)
|
|
* @method void wantTo($text)
|
|
* @method void execute($callable)
|
|
* @method void expectTo($prediction)
|
|
* @method void expect($prediction)
|
|
* @method void amGoingTo($argumentation)
|
|
* @method void am($role)
|
|
* @method void lookForwardTo($achieveValue)
|
|
* @method void comment($description)
|
|
* @method Friend haveFriend($name, $actorClass = NULL)
|
|
*
|
|
* @SuppressWarnings(PHPMD)
|
|
*/
|
|
class AcceptanceTester extends Actor
|
|
{
|
|
use _generated\AcceptanceTesterActions;
|
|
}
|