1
0
Fork 0
mirror of https://github.com/archtechx/gloss.git synced 2025-12-12 03:04:04 +00:00
gloss/tests/TestCase.php
lukinovec 118981f8df
Add L10 support, remove L6 and L8 support (#4)
* Add L10 support, remove L6 and L8 support

* Fix PHPStan issue

* Ignore PHPStan error
2023-02-16 11:38:04 +01:00

24 lines
461 B
PHP

<?php
namespace Lean\Gloss\Tests;
use Lean\Gloss\Gloss;
use Lean\Gloss\GlossServiceProvider;
class TestCase extends \Orchestra\Testbench\TestCase
{
public function setUp(): void
{
parent::setUp();
// @phpstan-ignore-next-line
$this->app->bind('translation.loader', GlossLoader::class);
}
protected function getPackageProviders($app)
{
return [
GlossServiceProvider::class,
];
}
}