PHP code example of morrislaptop / laravel-boot-maker
1. Go to this page and download the library: Download morrislaptop/laravel-boot-maker library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
morrislaptop / laravel-boot-maker example snippets
namespace Tests;
trait CreatesPartialApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app =
namespace Tests;
use Morrislaptop\LaravelBootMaker\PartialTestCase as BasePartialTestCase;
abstract class PartialTestCase extends BasePartialTestCase
{
use CreatesPartialApplication;
}
namespace Tests\Feature;
use App\Events\QuestionCreated;
use App\Listeners\AskQuestion;
use Illuminate\Support\Facades\Event;
use Morrislaptop\LaravelBootMaker\Concerns\Events;
use Tests\PartialTestCase;
class QuestionCreatedTest extends PartialTestCase
{
use Events;
/**
* A basic feature test example.
*
* @return void
*/
public function test_example()
{
Event::fake();
Event::assertListening(QuestionCreated::class, AskQuestion::class);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.