- Added phpstan/phpstan - Added bootstrap file - Added phpstan config - Added ci file - Added to CI matrix Signed-off-by: William Desportes <williamdes@wdes.fr>
20 lines
383 B
PHP
20 lines
383 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* Bootstrap file for phpstan
|
|
*
|
|
* @package PhpMyAdmin-test
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
define('PHPMYADMIN', true);
|
|
define('TESTSUITE', true);
|
|
|
|
require_once 'libraries/config.default.php';
|
|
$GLOBALS['cfg'] = $cfg;
|
|
$GLOBALS['server'] = 0;
|
|
|
|
\PhpMyAdmin\MoTranslator\Loader::loadFunctions();
|
|
|
|
\PhpMyAdmin\DatabaseInterface::load();
|