1
0
Fork 0
mirror of https://github.com/archtechx/airwire.git synced 2025-12-12 02:34:04 +00:00
airwire/tests/TestCase.php
Samuel Štancl d26fa93f1e initial
2021-05-20 20:15:55 +02:00

16 lines
302 B
PHP

<?php
namespace Airwire\Tests;
use Airwire\AirwireServiceProvider;
use Orchestra\Testbench\TestCase as TestbenchTestCase;
class TestCase extends TestbenchTestCase
{
protected function getPackageProviders($app)
{
return [
AirwireServiceProvider::class,
];
}
}