mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02: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
10 lines
131 B
PHP
10 lines
131 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ViewComponents;
|
|
|
|
interface ComponentInterface
|
|
{
|
|
public function render(): string;
|
|
}
|