Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Cli/Command/AddOn/UninstallStep.php
<?php

namespace XF\Cli\Command\AddOn;

use
Symfony\Component\Console\Input\InputArgument;

class
UninstallStep extends AbstractSetupStep
{
    protected function
getStepType()
    {
        return
'uninstall';
    }

    protected function
getCommandArguments()
    {
       
$this->addArgument(
           
'step',
           
InputArgument::REQUIRED,
           
'The step number to run.'
       
);
    }
}