mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- replace some helper components and forms with class components in the ui - create viewcomponents service and load the component function to be used in views
11 lines
131 B
PHP
11 lines
131 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents;
|
|
|
|
interface ComponentInterface
|
|
{
|
|
public function render(): string;
|
|
}
|