ApiGen\Console\Input\LiberalFormatArgvInput::splitByCommaIfHasAny PHP Méthode

splitByCommaIfHasAny() private méthode

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