A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

29 linhas
897B

  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Create The Application
  5. |--------------------------------------------------------------------------
  6. |
  7. | First we need to get an application instance. This creates an instance
  8. | of the application / container and bootstraps the application so it
  9. | is ready to receive HTTP / Console requests from the environment.
  10. |
  11. */
  12. $app = require __DIR__.'/../bootstrap/app.php';
  13. /*
  14. |--------------------------------------------------------------------------
  15. | Run The Application
  16. |--------------------------------------------------------------------------
  17. |
  18. | Once we have the application, we can handle the incoming request
  19. | through the kernel, and send the associated response back to
  20. | the client's browser allowing them to enjoy the creative
  21. | and wonderful application we have prepared for them.
  22. |
  23. */
  24. $app->run();