first commit
This commit is contained in:
11
bootstrap.php
Normal file
11
bootstrap.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
require 'vendor/autoload.php';
|
||||
use Dotenv\Dotenv;
|
||||
|
||||
use Src\System\DatabaseConnector;
|
||||
|
||||
$dotenv = new DotEnv(__DIR__);
|
||||
$dotenv->load();
|
||||
|
||||
$dbConnection = (new DatabaseConnector())->getConnection();
|
||||
|
||||
Reference in New Issue
Block a user