public function getKey() { return Request::makeKey($this->requestedResource, $this->requestType); }
public function getKey() { return Request::makeKey($this->name, $this->type); }
/** * Get the parameter map for the given request * @param array $requestName * @return array */ public static function getParameterMap($requestName, $requestType) { return array_key_exists(Request::makeKey($requestName, $resourceType), self::$listeners) ? self::$listeners[Request::makeKey($requestName, $requestType)]->getParameterMap() : array(); }