]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/request/class_BaseRequest.php
Fixed a typo
[core.git] / inc / classes / main / request / class_BaseRequest.php
index 3757607de5c389d86dc0fe9c9c1ed5dcc81df86a..475be2b8580e30d267b9c43445b1afa3fdd375a0 100644 (file)
@@ -28,7 +28,7 @@ class BaseRequest extends BaseFrameworkSystem {
        private $requestData = array();
 
        /**
-        * Wether this request is valid and can be further processed. The default is
+        * Whether this request is valid and can be further processed. The default is
         * valid so make sure your intercepting filters sets this attribute to false
         * when they need to intercept the data flow.
         */
@@ -46,9 +46,9 @@ class BaseRequest extends BaseFrameworkSystem {
        }
 
        /**
-        * Checks wether a request element is set
+        * Checks whether a request element is set
         * @param       $element        Name of the request element we want to check
-        * @return      $isSet          Wether the request element is set
+        * @return      $isSet          Whether the request element is set
         */
        public function isRequestElementSet ($element) {
                // Is this element found?
@@ -113,9 +113,9 @@ class BaseRequest extends BaseFrameworkSystem {
        }
 
        /**
-        * Sets wether the request was valid (default: true)
+        * Sets whether the request was valid (default: true)
         *
-        * @param       $isValid        Wether the request is valid
+        * @param       $isValid        Whether the request is valid
         * @return      void
         */
        public final function requestIsValid ($isValid = true) {
@@ -123,9 +123,9 @@ class BaseRequest extends BaseFrameworkSystem {
        }
 
        /**
-        * Returns wether this request is valid
+        * Returns whether this request is valid
         *
-        * @return      $requestIsValid         Wether this request is valid
+        * @return      $requestIsValid         Whether this request is valid
         */
        public final function isRequestValid () {
                return $this->requestIsValid;