Spatie\String\Integrations\Underscore::methodReturnsAString PHP Method

methodReturnsAString() public method

Determine if the given method returns a string.
public methodReturnsAString ( $method ) : boolean
$method
return boolean
    public function methodReturnsAString($method)
    {
        return $this->isSupportedMethod($method) ? $this->underscoreMethods[$method][1] : false;
    }