Illuminate\Support\Pluralizer::uncountable PHP 메소드

uncountable() 보호된 정적인 메소드

Determine if the given value is uncountable.
protected static uncountable ( string $value ) : boolean
$value string
리턴 boolean
    protected static function uncountable($value)
    {
        return in_array(strtolower($value), static::$uncountable);
    }