* doctrine db cache backend added

This commit is contained in:
Danyi Dávid
2017-08-12 22:56:25 +02:00
parent 36fa6c3297
commit 771db00c4f
22 changed files with 2368 additions and 205 deletions

9
cli-config.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
$container = require 'config/container.php';
return new \Symfony\Component\Console\Helper\HelperSet([
'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper(
$container->get('doctrine.entity_manager.orm_default')
),
]);