mediaPath = realpath($this->mediaPath); /** @var Application $app */ $app = require __DIR__ . '/../../bootstrap/app.php'; $this->artisan = $app->make(Artisan::class); $this->artisan->bootstrap(); return $app; } private function prepareForTests(): void { $this->artisan->call('migrate'); if (!User::count()) { $this->artisan->call('db:seed'); } } }