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;
    }