Sleimanx2\Plastic\Map\Blueprint::addCommand PHP 메소드

addCommand() 보호된 메소드

Add a new command to the blueprint.
protected addCommand ( string $name, array $parameters = [] ) : Illuminate\Support\Fluent
$name string
$parameters array
리턴 Illuminate\Support\Fluent
    protected function addCommand($name, array $parameters = [])
    {
        $this->commands[] = $command = $this->createCommand($name, $parameters);
        return $command;
    }