Yosymfony\Spress\Plugin\CommandDefinition::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $name )
$name string The name of the command. e.g: "update" or with namespace "theme:update"
    public function __construct($name)
    {
        $this->name = $name;
        $this->arguments = [];
        $this->options = [];
    }