blob: ac21d7e7f8f0c47d12c2d6e56537acdf414734e3 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface DeferringDisplayableValue
6{
7 /**
8 * Resolve the displayable value that the class is deferring.
9 *
10 * @return \Illuminate\Contracts\Support\Htmlable|string
11 */
12 public function resolveDisplayableValue();
13}