shlink/config/cli-config.php

13 lines
280 B
PHP
Raw Normal View History

2016-04-17 13:27:24 -05:00
<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
2016-04-17 13:27:24 -05:00
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\Tools\Console\ConsoleRunner;
return (static function () {
/** @var EntityManager $em */
$em = include __DIR__ . '/entity-manager.php';
2019-10-05 10:26:10 -05:00
return ConsoleRunner::createHelperSet($em);
})();