php-yaoi/php-yaoi

View on GitHub
src/View/Renderer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Yaoi\View;

use Yaoi\IsEmpty;

interface Renderer extends IsEmpty
{
    public function render();

    public function __toString();
}