Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use App\SharedKernel\Infrastructure\Framework\Symfony\Kernel;
|
||||
use Symfony\Component\Dotenv\Dotenv;
|
||||
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
new Dotenv()->bootEnv(__DIR__ . '/../.env');
|
||||
|
||||
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
|
||||
$kernel->boot();
|
||||
|
||||
/** @var Doctrine\Bundle\DoctrineBundle\Registry $doctrine */
|
||||
$doctrine = $kernel->getContainer()->get('doctrine');
|
||||
|
||||
return $doctrine->getManager();
|
||||
Reference in New Issue
Block a user