/
home
/
techb158
/
dev.balacoffee.com
/
tests
/
/home/techb158/dev.balacoffee.com/tests
mkdir
upload
Name
Size
Mode
Actions
Feature/
-
0755
rm
Unit/
-
0755
rm
CreatesApplication.php
402
0644
edit
dl
rm
TestCase.php
173
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/tests/CreatesApplication.php
(402B)
<?php namespace Tests; use Illuminate\Contracts\Console\Kernel; trait CreatesApplication { /** * Creates the application. * * @return \Illuminate\Foundation\Application */ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); return $app; } }
Save
make(Kernel::class)->bootstrap(); return $app; } }