Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. namespace Tests;
  3.  
  4. use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
  5.  
  6. class TestCase extends BaseTestCase
  7. {
  8. use CreatesApplication;
  9.  
  10. protected $headers = ['accept' => 'application/json'];
  11.  
  12. public function __construct(?string $name = null, array $data = [], string $dataName = '')
  13. {
  14. parent::__construct($name, $data, $dataName);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement