XF_Index/tests/CreatesApplication.php

28 lines
545 B
PHP
Raw Normal View History

2023-06-10 14:21:40 +08:00
<?php
/*
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
* 开发开源遵循 MIT 许可,若需商用请联系开发者
* https://www.x-lf.com/
*/
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
2023-06-11 14:20:56 +08:00
* @return \Illuminate\Foundation\Application
2023-06-10 14:21:40 +08:00
*/
public function createApplication()
{
2023-06-11 14:20:56 +08:00
$app = require __DIR__.'/../bootstrap/app.php';
2023-06-10 14:21:40 +08:00
$app->make(Kernel::class)->bootstrap();
return $app;
}
}