Created
August 5, 2019 21:03
-
-
Save a3dho3yn/1a2776c08e683975d870f095eb82c320 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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