10 lines
106 B
PHP
10 lines
106 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace View;
|
|
|
|
interface Sendable
|
|
{
|
|
public function send(): void;
|
|
}
|