DataSift\Storyplayer\Console\ScriptConsole::startStoryplayer PHP Method

startStoryplayer() public method

called when storyplayer starts
public startStoryplayer ( string $version, string $url, string $copyright, string $license ) : void
$version string
$url string
$copyright string
$license string
return void
    public function startStoryplayer($version, $url, $copyright, $license)
    {
        if ($this->verbosityLevel > 0) {
            echo <<<EOS
Storyplayer {$version} - {$url}
{$copyright}
{$license}


EOS;
        }
    }