Files
rmphp-foundation/src/TemplateInterface.php
2023-10-07 15:22:07 +03:00

8 lines
108 B
PHP

<?php
namespace Rmphp\Foundation;
interface TemplateInterface {
public function getResponse(): string;
}