File "UpdateActionsCommand.php"

Full Path: /var/www/drive/foundation/src/Core/Install/UpdateActionsCommand.php
File size: 363 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Core\Install;

use Common\Core\Install\UpdateActions;
use Illuminate\Console\Command;

class UpdateActionsCommand extends Command
{
    protected $signature = 'update:run';

    public function handle(): int
    {
        (new UpdateActions())->execute();

        $this->info('Update complete');

        return Command::SUCCESS;
    }
}