1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/tests/TestCase.php

18 lines
407 B
PHP
Raw Normal View History

2015-11-03 05:13:32 +01:00
<?php
2016-02-19 23:52:16 +01:00
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2015-11-03 05:13:32 +01:00
class TestCase extends Laravel\Lumen\Testing\TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
*/
2016-02-19 23:52:16 +01:00
use DatabaseTransactions;
2016-02-14 08:14:25 +01:00
public function createApplication() {
2015-11-03 05:13:32 +01:00
return require __DIR__.'/../bootstrap/app.php';
}
}