1: <?php namespace Illuminate\Support\Contracts; 2: 3: interface RenderableInterface { 4: 5: /** 6: * Get the evaluated contents of the object. 7: * 8: * @return string 9: */ 10: public function render(); 11: 12: }