Total Complexity | 2 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class ServiceProviderTest extends TestCase |
||
9 | { |
||
10 | public function test_merges_config(): void |
||
11 | { |
||
12 | static::assertSame( |
||
13 | $this->app->make('files') |
||
14 | ->getRequire(DynamicMailConfigServiceProvider::CONFIG), |
||
15 | $this->app->make('config')->get('dynamicmailconfig') |
||
16 | ); |
||
17 | } |
||
18 | |||
19 | public function test_publishes_middleware(): void |
||
25 | } |
||
26 | |||
28 |