12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
21 lines
376 B
PHP
21 lines
376 B
PHP
<?php
|
|
|
|
use App\Contracts\Migration;
|
|
use App\Services\Installer\ConfigService;
|
|
|
|
/**
|
|
* Migrate the configuration files
|
|
*/
|
|
return new class() extends Migration {
|
|
public function up()
|
|
{
|
|
/** @var ConfigService $configSvc */
|
|
$configSvc = app(ConfigService::class);
|
|
$configSvc->rewriteConfigFiles();
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
}
|
|
};
|