├── composer.json ├── src ├── Hooks │ └── TestCaseHandler.php └── Plugin.php ├── stubs └── TestCase.phpstub └── tools └── behat ├── behat.yml ├── composer.json ├── composer.lock ├── psalm.xml.dist ├── run └── .gitignore └── src └── Context.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/composer.json -------------------------------------------------------------------------------- /src/Hooks/TestCaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/src/Hooks/TestCaseHandler.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /stubs/TestCase.phpstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/stubs/TestCase.phpstub -------------------------------------------------------------------------------- /tools/behat/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/tools/behat/behat.yml -------------------------------------------------------------------------------- /tools/behat/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/tools/behat/composer.json -------------------------------------------------------------------------------- /tools/behat/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/tools/behat/composer.lock -------------------------------------------------------------------------------- /tools/behat/psalm.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/tools/behat/psalm.xml.dist -------------------------------------------------------------------------------- /tools/behat/run/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tools/behat/src/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psalm/psalm-plugin-phpunit/HEAD/tools/behat/src/Context.php --------------------------------------------------------------------------------