streams/Code/Widget/WidgetInterface.php
2022-10-23 20:39:49 -07:00

8 lines
115 B
PHP

<?php
namespace Code\Widget;
interface WidgetInterface
{
public function widget(array $arguments): string;
}