mirror of
				https://github.com/v2board/v2board.git
				synced 2025-11-04 19:31:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests;
 | 
						|
 | 
						|
use Illuminate\Contracts\Console\Kernel;
 | 
						|
 | 
						|
trait CreatesApplication
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Creates the application.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Foundation\Application
 | 
						|
     */
 | 
						|
    public function createApplication()
 | 
						|
    {
 | 
						|
        $app = require __DIR__ . '/../bootstrap/app.php';
 | 
						|
 | 
						|
        $app->make(Kernel::class)->bootstrap();
 | 
						|
 | 
						|
        return $app;
 | 
						|
    }
 | 
						|
}
 |