Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/tests
الملفات الموجودة في هذا الـ Path:
.
..
CreatesApplication.php
Feature
TestCase.php
Unit

مشاهدة ملف: CreatesApplication.php

<?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;
    }
}