DataSift\Storyplayer\Cli\Feature_ReuseTargetSwitch::__construct PHP Метод

__construct() публичный Метод

public __construct ( )
    public function __construct()
    {
        // define our name, and our description
        $this->setName('reusetarget');
        $this->setShortDescription('do not rebuild the test environment that we previously persisted');
        $this->setLongDesc("Use this switch if you want the test environment to continue to exist " . "after Storyplayer has finished running." . PHP_EOL . PHP_EOL . "Use the --persist-target switch on the previous run to leave the " . "test environment behind, so that you can then use this switch.");
        // what are the short switches?
        $this->addShortSwitch('R');
        // what are the long switches?
        $this->addLongSwitch('reuse-target');
        // all done
    }
Feature_ReuseTargetSwitch