]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/request/class_BaseRequest.php
Made lower to upper case:
[core.git] / inc / classes / main / request / class_BaseRequest.php
index 475be2b8580e30d267b9c43445b1afa3fdd375a0..01207d18502bc00bfa0d3d996a378ada8ab858e1 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -32,7 +32,7 @@ class BaseRequest extends BaseFrameworkSystem {
         * valid so make sure your intercepting filters sets this attribute to false
         * when they need to intercept the data flow.
         */
-       private $requestIsValid = true;
+       private $requestIsValid = TRUE;
 
        /**
         * Protected constructor
@@ -118,7 +118,7 @@ class BaseRequest extends BaseFrameworkSystem {
         * @param       $isValid        Whether the request is valid
         * @return      void
         */
-       public final function requestIsValid ($isValid = true) {
+       public final function requestIsValid ($isValid = TRUE) {
                $this->requestIsValid = (bool) $isValid;
        }