createApplication()->make(Kernel::class); $commands = [ 'config:cache', 'event:cache', ]; foreach ($commands as $command) { $console->call($command); } } public function executeAfterLastTest(): void { array_map('unlink', glob('bootstrap/cache/*.phpunit.php')); } }