7 lines
90 B
PHP
7 lines
90 B
PHP
<?php
|
|
namespace nulib\web\model;
|
|
|
|
interface IRenderer {
|
|
function render($data): void;
|
|
}
|