| 1 | <?php |
||
| 13 | /** |
||
| 14 | * Setup the test environment. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function setUp(): void |
||
| 19 | { |
||
| 20 | parent::setUp(); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get JsonResponse package providers. |
||
| 25 | * |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | protected function getPackageProviders($app) |
||
| 29 | { |
||
| 30 | return [ |
||
| 31 | JsonResponseServiceProvider::class, |
||
| 32 | ]; |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param $app |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | protected function getPackageAliases($app) |
||
| 40 | { |
||
| 41 | return [ |
||
| 42 | 'JsonResponse' => 'ArinaSystems\JsonResponse\Facades\JsonResponse', |
||
| 43 | ]; |
||
| 44 | } |
||
| 45 | } |
||
| 46 |