Spatie\String\Integrations\Underscore::methodReturnsAString PHP Метод

methodReturnsAString() публичный Метод

Determine if the given method returns a string.
public methodReturnsAString ( $method ) : boolean
$method
Результат boolean
    public function methodReturnsAString($method)
    {
        return $this->isSupportedMethod($method) ? $this->underscoreMethods[$method][1] : false;
    }