mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
14 lines
275 B
PHP
14 lines
275 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Required for PHPStan.
|
||
|
*
|
||
|
* @see https://github.com/phpstan/phpstan-doctrine#configuration
|
||
|
*/
|
||
|
require __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
$kernel = new AppKernel('test', true);
|
||
|
$kernel->boot();
|
||
|
|
||
|
return $kernel->getContainer()->get('doctrine')->getManager();
|