mirror of
https://github.com/archtechx/laravel-seo.git
synced 2025-12-12 01:44:03 +00:00
16 lines
320 B
PHP
16 lines
320 B
PHP
<?php
|
|
|
|
namespace ArchTech\REPLACE\Tests;
|
|
|
|
use Orchestra\Testbench\TestCase as TestbenchTestCase;
|
|
use ArchTech\REPLACE\REPLACEServiceProvider;
|
|
|
|
class TestCase extends TestbenchTestCase
|
|
{
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [
|
|
REPLACEServiceProvider::class,
|
|
];
|
|
}
|
|
}
|