DeferringDisplayableValue.php 285 B

12345678910111213
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface DeferringDisplayableValue
  4. {
  5. /**
  6. * Resolve the displayable value that the class is deferring.
  7. *
  8. * @return \Illuminate\Contracts\Support\Htmlable|string
  9. */
  10. public function resolveDisplayableValue();
  11. }