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

__construct() public method

public __construct ( )
    public function __construct()
    {
        // define the command
        $this->setName('create-story');
        $this->setShortDescription('create a new story');
        $this->setLongDescription("Use this command to create a new Story.php file, complete with " . "the necessary PHP 'use' statement and comments to help guide you " . "as you bring your story to life." . PHP_EOL);
        $this->setArgsList(array("[<story.php|list.json>]" => "the story.php file to create"));
        $this->setSwitches(array(new CreateStory_BasedOnSwitch(), new CreateStory_ForceSwitch()));
    }