Some checks failed
		
		
	
	rvr-nextgen/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			654 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			654 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
define('SCRIPT_STARTED', hrtime(true));
 | 
						|
 | 
						|
require 'vendor/autoload.php';
 | 
						|
 | 
						|
const ROOT = __DIR__;
 | 
						|
const VERSION = '';
 | 
						|
const REVISION = '';
 | 
						|
const REVISION_DATE = '';
 | 
						|
 | 
						|
$dotenv = Dotenv\Dotenv::createImmutable(ROOT);
 | 
						|
$dotenv->load();
 | 
						|
 | 
						|
class Container
 | 
						|
{
 | 
						|
    static SokoWeb\Interfaces\Database\IConnection $dbConnection;
 | 
						|
    static SokoWeb\Routing\RouteCollection $routeCollection;
 | 
						|
    static SokoWeb\Interfaces\Session\ISessionHandler $sessionHandler;
 | 
						|
    static SokoWeb\Interfaces\Request\IRequest $request;
 | 
						|
}
 | 
						|
 | 
						|
Container::$dbConnection = new SokoWeb\Database\Mysql\Connection($_ENV['DB_HOST'], $_ENV['DB_USER'], $_ENV['DB_PASSWORD'], $_ENV['DB_NAME']);
 |