ApiGen\Console\Input\LiberalFormatArgvInput::splitByCommaIfHasAny PHP Method

splitByCommaIfHasAny() private method

private splitByCommaIfHasAny ( string $value ) : string | array
$value string
return string | array
    private function splitByCommaIfHasAny($value)
    {
        if ($this->containsComma($value)) {
            return explode(',', $value);
        }
        return $value;
    }