mirror of
https://github.com/pestphp/pest.git
synced 2026-06-05 02:52:12 +02:00
feat: improves fatal exception handling
This commit is contained in:
16
src/Contracts/Plugins/Terminable.php
Normal file
16
src/Contracts/Plugins/Terminable.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pest\Contracts\Plugins;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
interface Terminable
|
||||
{
|
||||
/**
|
||||
* Terminates the plugin.
|
||||
*/
|
||||
public function terminate(): void;
|
||||
}
|
||||
Reference in New Issue
Block a user