DataSift\Storyplayer\Cli\Feature_DevModeSwitch::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        // define our name, and our description
        $this->setName('dev');
        $this->setShortDescription('enable story development mode');
        $this->setLongDesc("'dev' mode currently does the following:" . PHP_EOL . PHP_EOL . "* displays the full story log on stdout" . PHP_EOL . PHP_EOL . "The full story log is also available in storyplayer.log.");
        // what are the long switches?
        $this->addLongSwitch('dev');
        // all done
    }
Feature_DevModeSwitch