Illuminate\Support\Pluralizer::uncountable PHP Method

uncountable() protected static method

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