mirror of
https://github.com/archtechx/money.git
synced 2025-12-12 03:14:03 +00:00
15 lines
311 B
PHP
15 lines
311 B
PHP
<?php
|
|
|
|
namespace ArchTech\Money\Tests;
|
|
use Orchestra\Testbench\TestCase as TestbenchTestCase;
|
|
use ArchTech\Money\MoneyServiceProvider;
|
|
|
|
class TestCase extends TestbenchTestCase
|
|
{
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [
|
|
MoneyServiceProvider::class,
|
|
];
|
|
}
|
|
}
|