mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
55 lines
1.3 KiB
PHP
55 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand;
|
|
|
|
use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
|
|
use Barryvdh\LaravelIdeHelper\Tests\TestCase;
|
|
|
|
abstract class AbstractModelsCommand extends TestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->loadMigrationsFrom(__DIR__ . '/migrations');
|
|
$this->artisan('migrate');
|
|
$this->mockFilesystem();
|
|
}
|
|
|
|
/**
|
|
* Get package providers.
|
|
*
|
|
* @param \Illuminate\Foundation\Application $app
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function getPackageProviders($app)
|
|
{
|
|
return [IdeHelperServiceProvider::class];
|
|
}
|
|
|
|
protected function getEnvironmentSetUp($app)
|
|
{
|
|
parent::getEnvironmentSetUp($app);
|
|
|
|
$config = $app['config'];
|
|
|
|
$config->set('database.default', 'sqlite');
|
|
$config->set('database.connections.sqlite', [
|
|
'driver' => 'sqlite',
|
|
'database' => ':memory:',
|
|
'prefix' => '',
|
|
]);
|
|
|
|
// Load the Models from the Test dir
|
|
$config->set('ide-helper.model_locations', [
|
|
dirname((new \ReflectionClass(static::class))->getFileName()) . '/Models',
|
|
]);
|
|
|
|
// Don't override integer -> int for tests
|
|
$config->set('ide-helper.type_overrides', []);
|
|
}
|
|
}
|