Laravel API hozzáadása

This commit is contained in:
2018-03-14 20:09:57 +01:00
parent dd449f32d7
commit e2d3dc51d6
83 changed files with 8143 additions and 0 deletions
@@ -0,0 +1,22 @@
<?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;
}
}