Automattic\Wistia\Traits\ApiMethodsTrait::_get_method_signature PHP Метод

_get_method_signature() приватный Метод

Check if a method exists and return its name and params
private _get_method_signature ( $method ) : array | null
Результат array | null
    private function _get_method_signature($method)
    {
        $valid_method = isset($this->_methods[$method]) && is_array($this->_methods[$method]) && count($this->_methods[$method]) >= 2;
        if ($valid_method) {
            return $this->_methods[$method];
        }
        return null;
    }