mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 19:24:59 +02:00
25 lines
661 B
PHP
25 lines
661 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Console\Commands\Repositories\Storage\Admin;
|
|
|
|
use App\Concerns\Repositories\Admin\ReconcilesDumpRepositories;
|
|
use App\Console\Commands\Repositories\Storage\StorageReconcileCommand;
|
|
use App\Constants\Config\DumpConstants;
|
|
use Illuminate\Support\Facades\Config;
|
|
|
|
class DumpReconcileCommand extends StorageReconcileCommand
|
|
{
|
|
use ReconcilesDumpRepositories;
|
|
|
|
protected $signature = 'reconcile:dump';
|
|
|
|
protected $description = 'Perform set reconciliation between object storage and dump database';
|
|
|
|
public function disk(): string
|
|
{
|
|
return Config::get(DumpConstants::DISK_QUALIFIED);
|
|
}
|
|
}
|