]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/filter/chat/class_ChatPhpRequirementsFilter.php
Made lower to upper case:
[hub.git] / application / hub / main / filter / chat / class_ChatPhpRequirementsFilter.php
index ce2a04c0019e9eb8224b208afd471b17e7c026aa..493cff265de1a777ea7c8bacb0b4977dad519192 100644 (file)
@@ -56,18 +56,18 @@ class ChatPhpRequirementsFilter extends BaseChatFilter implements Filterable {
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                // By default, the requirement check is passed and zero checks are failed
-               $checkPassed = true;
+               $checkPassed = TRUE;
                $checksFailed = 0;
 
                // Socket support is essential...
                if (!function_exists('socket_create')) {
                        // Test failed
-                       $checkPassed = false;
+                       $checkPassed = FALSE;
                        $checksFailed++;
                } // END -if
 
                // Are all tests passed?
-               if ($checkPassed === false) {
+               if ($checkPassed === FALSE) {
                        // Throw an exception
                        throw new FilterChainException($this, self::FILTER_CHAIN_INTERCEPTED);
                } // END - if