Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
wp-content
/
plugins
/
kadence-blocks
/
includes
/
resources
/
Shutdown
/
Contracts
:
Terminable.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare( strict_types=1 ); namespace KadenceWP\KadenceBlocks\Shutdown\Contracts; use KadenceWP\KadenceBlocks\Shutdown\Shutdown_Provider; /** * Any class that utilizes the Shutdown Handler to perform * a task should implement this contract and be added to * the collection. * * @see Shutdown_Provider::register() */ interface Terminable { /** * Perform a task on shutdown. * * @action shutdown * * @return void */ public function terminate(): void; }