Kraken\Console\Client\Command\Runtime\RuntimeExistsCommand::onSuccess PHP Method

onSuccess() protected method

protected onSuccess ( mixed $value )
$value mixed
    protected function onSuccess($value)
    {
        $value = (bool) $value;
        if ($value) {
            echo $this->successMessage("Runtime exists.");
        } else {
            echo $this->failureMessage(new Exception(), "Runtime does not exist.");
        }
    }
RuntimeExistsCommand