Created EntityManagerFactory

This commit is contained in:
Alejandro Celaya
2016-04-17 20:27:24 +02:00
parent db9051dcde
commit 03298fc448
12 changed files with 150 additions and 9 deletions

View File

@@ -1,6 +1,9 @@
<?php
use Interop\Container\ContainerInterface;
use Zend\Expressive\Application;
/** @var ContainerInterface $container */
$container = include __DIR__ . '/../config/container.php';
/** @var Application $app */
$app = include __DIR__ . '/../config/app.php';
$app = $container->get(Application::class);
$app->run();