 b11a4f6649
			
		
	
	b11a4f6649
	
	
	
		
			
			update Fixes testclasses Apply fixes from StyleCI Update .travis.yml Revert "Update .travis.yml" This reverts commit 462dd1cb44402f6cbcb516ff17e48d1d562e98e2.
		
			
				
	
	
		
			28 lines
		
	
	
		
			546 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			546 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests;
 | |
| 
 | |
| class TestCase extends \Illuminate\Foundation\Testing\TestCase
 | |
| {
 | |
|     /**
 | |
|      * The base URL to use while testing the application.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $baseUrl = 'http://localhost';
 | |
| 
 | |
|     /**
 | |
|      * Creates the application.
 | |
|      *
 | |
|      * @return \Illuminate\Foundation\Application
 | |
|      */
 | |
|     public function createApplication()
 | |
|     {
 | |
|         $app = require __DIR__.'/../bootstrap/app.php';
 | |
| 
 | |
|         $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
 | |
| 
 | |
|         return $app;
 | |
|     }
 | |
| }
 |