Renderable.php 197B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface Renderable
  4. {
  5. /**
  6. * Get the evaluated contents of the object.
  7. *
  8. * @return string
  9. */
  10. public function render();
  11. }