ApiGen\Console\Input\LiberalFormatArgvInput::splitByCommaIfHasAny PHP Метод

splitByCommaIfHasAny() приватный метод

private splitByCommaIfHasAny ( string $value ) : string | array
$value string
Результат string | array
    private function splitByCommaIfHasAny($value)
    {
        if ($this->containsComma($value)) {
            return explode(',', $value);
        }
        return $value;
    }