<?php namespace Tests; use Illuminate\Contracts\Console\Kernel; use Illuminate\Foundation\Application; trait CreatesApplication { /** * Creates the application. */ public function createApplication(): Application { $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); return $app; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Feature | Folder | 0755 |
|
|
Unit | Folder | 0755 |
|
|
CreatesApplication.php | File | 375 B | 0644 |
|
TestCase.php | File | 163 B | 0644 |
|