Files
pest/src/Contracts/Plugins/AddsOutput.php
2020-06-05 11:52:23 +02:00

17 lines
257 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Contracts\Plugins;
/**
* @internal
*/
interface AddsOutput
{
/**
* Allows to add custom output after the test suite was executed.
*/
public function addOutput(int $testReturnCode): int;
}