mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
13 lines
197 B
PHP
Executable file
13 lines
197 B
PHP
Executable file
<?php
|
|
|
|
namespace Illuminate\Contracts\Support;
|
|
|
|
interface Renderable
|
|
{
|
|
/**
|
|
* Get the evaluated contents of the object.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function render();
|
|
}
|