~xdavidwu/uptime-monitor

ref: aecee1b64b15824e38f2eb5aff91129f18fd985b uptime-monitor/tests/TestCase.php -rw-r--r-- 314 bytes
aecee1b6xdavidwu rebase onto lumen 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

use Laravel\Lumen\Testing\TestCase as BaseTestCase;

abstract class TestCase extends BaseTestCase
{
    /**
     * Creates the application.
     *
     * @return \Laravel\Lumen\Application
     */
    public function createApplication()
    {
        return require __DIR__.'/../bootstrap/app.php';
    }
}