MIF_E31222691/laravel/renderable.php

12 lines
165 B
PHP

<?php namespace Laravel;
interface Renderable {
/**
* Get the evaluated string contents of the object.
*
* @return string
*/
public function render();
}