Nwidart\Modules\Commands\ListCommand::getModules PHP Метод

getModules() публичный Метод

public getModules ( )
    public function getModules()
    {
        switch ($this->option('only')) {
            case 'enabled':
                return $this->laravel['modules']->getByStatus(1);
                break;
            case 'disabled':
                return $this->laravel['modules']->getByStatus(0);
                break;
            case 'ordered':
                return $this->laravel['modules']->getOrdered($this->option('direction'));
                break;
            default:
                return $this->laravel['modules']->all();
                break;
        }
    }