8 lines
108 B
PHP
8 lines
108 B
PHP
<?php
|
|
|
|
namespace Rmphp\Foundation;
|
|
|
|
interface TemplateInterface {
|
|
|
|
public function getResponse(): string;
|
|
} |