shlink/config/cli-config.php

13 lines
280 B
PHP
Raw Normal View History

2016-04-17 20:27:24 +02:00
<?php
2019-10-05 17:26:10 +02:00
2017-10-12 10:13:20 +02:00
declare(strict_types=1);
2016-04-17 20:27:24 +02: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 17:26:10 +02:00
return ConsoleRunner::createHelperSet($em);
})();