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;
    }