* @return $cookieValue Value of cookie or null if not found
*/
function readCookie ($cookieName);
+
+ /**
+ * Checks if the request method is GET.
+ *
+ * @return $isGet Whether the request method is GET
+ */
+ function isGetRequestMethod ();
+
+ /**
+ * Checks if the request method is HEAD.
+ *
+ * @return $isHead Whether the request method is HEAD
+ */
+ function isHeadRequestMethod ();
+
+ /**
+ * Checks if the request method is POST.
+ *
+ * @return $isPost Whether the request method is POST
+ */
+ function isPostRequestMethod ();
}
// [EOF]
// There are no cookies on console
throw new UnsupportedOperationException(array($this, __FUNCTION__, $executorInstance), self::EXCEPTION_UNSPPORTED_OPERATION);
}
+
+ /**
+ * Checks if the request method is GET.
+ *
+ * @return $isGet Whether the request method is GET
+ * @throws UnsupportedOperationException This method should never be called
+ */
+ public function isGetRequestMethod () {
+ // Not support method
+ throw new UnsupportedOperationException(array($this, __FUNCTION__, $executorInstance), self::EXCEPTION_UNSPPORTED_OPERATION);
+ }
+
+ /**
+ * Checks if the request method is HEAD.
+ *
+ * @return $isHead Whether the request method is HEAD
+ * @throws UnsupportedOperationException This method should never be called
+ */
+ public function isHeadRequestMethod () {
+ // Not support method
+ throw new UnsupportedOperationException(array($this, __FUNCTION__, $executorInstance), self::EXCEPTION_UNSPPORTED_OPERATION);
+ }
+
+ /**
+ * Checks if the request method is POST.
+ *
+ * @return $isPost Whether the request method is POST
+ * @throws UnsupportedOperationException This method should never be called
+ */
+ public function isPostRequestMethod () {
+ // Not support method
+ throw new UnsupportedOperationException(array($this, __FUNCTION__, $executorInstance), self::EXCEPTION_UNSPPORTED_OPERATION);
+ }
}
// [EOF]
return $requestInstance;
}
+ /**
+ * Checks if the request method is GET.
+ *
+ * @return $isGet Whether the request method is GET
+ */
+ public function isGetRequestMethod () {
+ // Check it
+ return ($this->getRequestMethod() == 'GET');
+ }
+
+ /**
+ * Checks if the request method is HEAD.
+ *
+ * @return $isHead Whether the request method is HEAD
+ */
+ public function isHeadRequestMethod () {
+ // Check it
+ return ($this->getRequestMethod() == 'HEAD');
+ }
+
+ /**
+ * Checks if the request method is POST.
+ *
+ * @return $isPost Whether the request method is POST
+ */
+ public function isPostRequestMethod () {
+ // Check it
+ return ($this->getRequestMethod() == 'POST');
+ }
+
/**
* Prepares the HTML request data for usage by currently copying
* $_REQUEST into a private attribute. Later on we can add more