123456789101112131415161718192021222324252627282930313233 |
- <?php
- use Illuminate\Contracts\Console\Kernel;
- require_once __DIR__.'/../vendor/autoload.php';
- if (file_exists($_SERVER['APP_CONFIG_CACHE'])) {
- unlink($_SERVER['APP_CONFIG_CACHE']);
- }
- /*
- |--------------------------------------------------------------------------
- | Bootstrap The Test Environment
- |--------------------------------------------------------------------------
- |
- | You may specify console commands that execute once before your test is
- | run. You are free to add your own additional commands or logic into
- | this file as needed in order to help your test suite run quicker.
- |
- */
- $commands = [
- 'config:cache',
- 'event:cache',
- ];
- $app = require __DIR__.'/../bootstrap/app.php';
- $console = tap($app->make(Kernel::class))->bootstrap();
- foreach ($commands as $command) {
- $console->call($command);
- }
|