blob: aa20e9631f7690c7a8229197c4edacbe01a8ea85 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Tightenco\Collect\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}