mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:07:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			446 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			446 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests;
 | 
						|
 | 
						|
use Illuminate\Contracts\Console\Kernel;
 | 
						|
use Illuminate\Support\Facades\Hash;
 | 
						|
 | 
						|
trait CreatesApplication
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Creates the application.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Foundation\Application
 | 
						|
     */
 | 
						|
    public function createApplication()
 | 
						|
    {
 | 
						|
        $app = require __DIR__.'/../bootstrap/app.php';
 | 
						|
 | 
						|
        $app->make(Kernel::class)->bootstrap();
 | 
						|
 | 
						|
        Hash::setRounds(4);
 | 
						|
 | 
						|
        return $app;
 | 
						|
    }
 | 
						|
}
 |