You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestCase.php 270B

1234567891011121314
  1. <?php
  2. class TestCase extends Laravel\Lumen\Testing\TestCase
  3. {
  4. /**
  5. * Creates the application.
  6. *
  7. * @return \Laravel\Lumen\Application
  8. */
  9. public function createApplication()
  10. {
  11. return require __DIR__.'/../bootstrap/app.php';
  12. }
  13. }