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