Engine.php 266 B

12345678910111213141516
  1. <?php
  2. namespace Illuminate\Contracts\View;
  3. interface Engine
  4. {
  5. /**
  6. * Get the evaluated contents of the view.
  7. *
  8. * @param string $path
  9. * @param array $data
  10. * @return string
  11. */
  12. public function get($path, array $data = []);
  13. }