mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-14 02:05:47 +00:00
11 lines
131 B
PHP
11 lines
131 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ViewComponents;
|
||
|
|
||
|
interface ComponentInterface
|
||
|
{
|
||
|
public function render(): string;
|
||
|
}
|