aboutsummaryrefslogtreecommitdiff
path: root/tests/TestCase.php
blob: 651d9cbd67f3105644325da52ab05cd1c6fad92c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

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