]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/request/class_Requestable.php
Type-hints fixed, header docs fixed, exceptions deprecated
[shipsimu.git] / inc / classes / interfaces / request / class_Requestable.php
index 08dd5b170b13e4f7c32cf6fa74e4d878127794f9..1c3d092507be464a067c9a19a0f7fc0886c4c7b0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for requests
  *
- * @author             Roland Haeder <webmaster@mxchange.org>
+ * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
  * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -62,6 +62,22 @@ interface Requestable extends FrameworkInterface {
         * @return      $headerValue    Value of the header or 'null' if not found
         */
        function getHeader ($headerName);
+
+       /**
+        * Sets wether the request was valid (default: true)
+        *
+        * @param       $isValid                Wether the request is valid
+        * @return      void
+        */
+       function requestIsValid ($isValid = true);
+
+       /**
+        * Reads a cookie and returns it's value or null if not found
+        *
+        * @param       $cookieName             Name of cookie we shall read
+        * @return      $cookieValue    Value of cookie or null if not found
+        */
+       function readCookie ($cookieName);
 }
 
 //