PHP Class Nwidart\Modules\Commands\SeedCommand

Inheritance: extends Illuminate\Console\Command, use trait Nwidart\Modules\Traits\ModuleCommandTrait
Afficher le fichier Open project: nwidart/laravel-modules

Protected Properties

Свойство Type Description
$description string The console command description.
$name string The console command name.

Méthodes publiques

Méthode Description
fire ( ) : mixed Execute the console command.
getModuleByName ( $name ) : Module
getModuleRepository ( ) : Repository
getSeederName ( string $name ) : string Get master database seeder name for the specified module.
moduleSeed ( Module $module ) : void

Méthodes protégées

Méthode Description
dbSeed ( string $className ) : array Seed the specified module.
getArguments ( ) : array Get the console command arguments.
getOptions ( ) : array Get the console command options.

Method Details

dbSeed() protected méthode

Seed the specified module.
protected dbSeed ( string $className ) : array
$className string
Résultat array

fire() public méthode

Execute the console command.
public fire ( ) : mixed
Résultat mixed

getArguments() protected méthode

Get the console command arguments.
protected getArguments ( ) : array
Résultat array

getModuleByName() public méthode

public getModuleByName ( $name ) : Module
$name
Résultat Nwidart\Modules\Module

getModuleRepository() public méthode

public getModuleRepository ( ) : Repository
Résultat Nwidart\Modules\Repository

getOptions() protected méthode

Get the console command options.
protected getOptions ( ) : array
Résultat array

getSeederName() public méthode

Get master database seeder name for the specified module.
public getSeederName ( string $name ) : string
$name string
Résultat string

moduleSeed() public méthode

public moduleSeed ( Module $module ) : void
$module Nwidart\Modules\Module
Résultat void

Property Details

$description protected_oe property

The console command description.
protected string $description
Résultat string

$name protected_oe property

The console command name.
protected string $name
Résultat string