Changed all true/false to TRUE/FALSE respectively as PHP constants are better than...
[core.git] / inc / classes / main / request / class_BaseRequest.php
index 01207d18502bc00bfa0d3d996a378ada8ab858e1..d2ca3867a10b5a8f20d3038b21d9097e876a3c12 100644 (file)
@@ -29,7 +29,7 @@ class BaseRequest extends BaseFrameworkSystem {
 
        /**
         * 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
+        * valid so make sure your intercepting filters sets this attribute to FALSE
         * when they need to intercept the data flow.
         */
        private $requestIsValid = TRUE;
@@ -113,7 +113,7 @@ class BaseRequest extends BaseFrameworkSystem {
        }
 
        /**
-        * Sets whether the request was valid (default: true)
+        * Sets whether the request was valid (default: TRUE)
         *
         * @param       $isValid        Whether the request is valid
         * @return      void