Initial Commit

This commit is contained in:
icefox 2026-02-18 19:06:59 -03:00
commit 88b5850c32
No known key found for this signature in database
12 changed files with 11441 additions and 0 deletions

16
tests/TestCase.php Normal file
View file

@ -0,0 +1,16 @@
<?php
namespace Tests;
use Icefox\DTO\DataObjectServiceProvider;
use Orchestra\Testbench\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
protected function getPackageProviders($app)
{
return [
DataObjectServiceProvider::class,
];
}
}