19 lines
465 B
PHP
19 lines
465 B
PHP
<?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();
|