Просмотр файла vendor/illuminate/contracts/Support/Htmlable.php

Размер файла: 186B
  1. <?php
  2.  
  3. namespace Illuminate\Contracts\Support;
  4.  
  5. interface Htmlable
  6. {
  7. /**
  8. * Get content as a string of HTML.
  9. *
  10. * @return string
  11. */
  12. public function toHtml();
  13. }