lumen-generators/lumen-test/tests/TestCase.php

15 lines
270 B
PHP
Raw Normal View History

2015-09-23 05:22:02 +03:00
<?php
class TestCase extends Laravel\Lumen\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
}
}