castopod/app/Libraries/ViewComponents/ComponentInterface.php

11 lines
131 B
PHP

<?php
declare(strict_types=1);
namespace ViewComponents;
interface ComponentInterface
{
public function render(): string;
}