blob: 25c181ecc46ef8a7d83a5eef525a0249a53789f6 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface Renderable
6{
7 /**
8 * Get the evaluated contents of the object.
9 *
10 * @return string
11 */
12 public function render();
13}