insecure-bank/webroot/lib/View/Sendable.php

10 lines
106 B
PHP

<?php
declare(strict_types=1);
namespace View;
interface Sendable
{
public function send(): void;
}