Moosh\Command\Generic\Plugin\PluginInstall::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct('install', 'plugin');
        $this->addArgument('plugin_name');
        $this->addArgument('plugin_version');
        $this->addOption('f|force', 'Force installation even if current Moodle version is unsupported.');
        $this->addOption('d|delete', 'If it already exists, automatically delete plugin before installing.');
    }