blob: 32f643a14f18f64cc669534cb095b2979a9cde5c [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface Htmlable
6{
7 /**
8 * Get content as a string of HTML.
9 *
10 * @return string
11 */
12 public function toHtml();
13}