forked from mll-lab/laravel-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestCase.php
More file actions
27 lines (23 loc) · 683 Bytes
/
TestCase.php
File metadata and controls
27 lines (23 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php declare(strict_types=1);
namespace MLL\LaravelUtils\Tests;
use MLL\LaravelUtils\LaravelUtilsServiceProvider;
use MLL\LaravelUtils\Mail\MailServiceProvider;
use Orchestra\Testbench\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
/**
* Set when not in setUp.
*
* @var \Illuminate\Foundation\Application
*/
// @phpstan-ignore-next-line
protected $app;
/** @return array<int, class-string<\Illuminate\Support\ServiceProvider>> */
protected function getPackageProviders($app): array
{
return [
LaravelUtilsServiceProvider::class,
MailServiceProvider::class,
];
}
}