forked from loafle/openapi-generator-original
		
	* Lumen 5.6 support * recall headlines * Update composer.mustache * regenerate lumne php petstore samples * remove output format from lumen routes * Fix: "A facade root has not been set" * Ignore log folder
		
			
				
	
	
		
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			279 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
abstract class TestCase extends Laravel\Lumen\Testing\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Creates the application.
 | 
						|
     *
 | 
						|
     * @return \Laravel\Lumen\Application
 | 
						|
     */
 | 
						|
    public function createApplication()
 | 
						|
    {
 | 
						|
        return require __DIR__.'/../bootstrap/app.php';
 | 
						|
    }
 | 
						|
}
 |