Add render() Method

This commit is contained in:
2025-10-25 14:57:11 -04:00
parent 057c7f1187
commit 8f43a0e823
3 changed files with 3 additions and 3 deletions

View File

@@ -6,5 +6,5 @@ namespace Potter\Renderable;
abstract class AbstractRenderable implements RenderableInterface
{
abstract public function render(): string;
}

View File

@@ -6,5 +6,5 @@ namespace Potter\Renderable;
interface RenderableInterface
{
public function render(): string;
}

View File

@@ -6,5 +6,5 @@ namespace Potter\Renderable;
trait RenderableTrait
{
abstract public function render(): string;
}