ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/innerstore/tests/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/innerstore/tests/CreatesApplication.php |
<?php namespace Tests; use Illuminate\Contracts\Console\Kernel; use Illuminate\Foundation\Application; trait CreatesApplication { /** * Creates the application. * * @return Application */ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); return $app; } }