Skip to content

Instantly share code, notes, and snippets.

@a3dho3yn
Created August 5, 2019 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a3dho3yn/1a2776c08e683975d870f095eb82c320 to your computer and use it in GitHub Desktop.
Save a3dho3yn/1a2776c08e683975d870f095eb82c320 to your computer and use it in GitHub Desktop.
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
class TestCase extends BaseTestCase
{
use CreatesApplication;
protected $headers = ['accept' => 'application/json'];
public function __construct(?string $name = null, array $data = [], string $dataName = '')
{
parent::__construct($name, $data, $dataName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment