Files
trf_certest/vendor/vanguardapp/plugins/src/Contracts/Hook.php
T
2025-03-28 08:52:46 +01:00

14 lines
186 B
PHP

<?php
namespace Vanguard\Plugins\Contracts;
use Illuminate\Contracts\View\View;
interface Hook
{
/**
* Execute the hook action.
*/
public function handle(): View;
}