peakphp/framework

View on GitHub
src/Blueprint/Common/Renderable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Peak\Blueprint\Common;

interface Renderable
{
    /**
     * Render the object contents and return it
     * @return string
     */
    public function render();
}