9 lines
250 B
PHP
9 lines
250 B
PHP
<?php
|
|
|
|
require __DIR__.'/../vendor/autoload.php';
|
|
|
|
// Config-Cache entfernen, damit phpunit.xml-Umgebungsvariablen (SQLite) greifen
|
|
$configCache = __DIR__.'/../bootstrap/cache/config.php';
|
|
if (file_exists($configCache)) {
|
|
unlink($configCache);
|
|
}
|