JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "ModuleDeleteCommand.php"

Full Path: /var/www/laravel_filter/vendor/nwidart/laravel-modules/src/Commands/ModuleDeleteCommand.php
File size: 669 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Nwidart\Modules\Commands;

use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputArgument;

class ModuleDeleteCommand extends Command
{
    protected $name = 'module:delete';
    protected $description = 'Delete a module from the application';

    public function handle(): int
    {
        $this->laravel['modules']->delete($this->argument('module'));

        $this->components->info("Module {$this->argument('module')} has been deleted.");

        return 0;
    }

    protected function getArguments()
    {
        return [
            ['module', InputArgument::REQUIRED, 'The name of module to delete.'],
        ];
    }
}