]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/stacker/class_BaseStacker.php
Some minor rewrites
[core.git] / inc / classes / main / stacker / class_BaseStacker.php
index 1bfd88063616920d943e4430c44d2c9798af975e..ea31904d0797a14ef86c083456115cf78bf19d42 100644 (file)
@@ -104,7 +104,7 @@ class BaseStacker extends BaseFrameworkSystem {
        /**
         * Checks wether the given stack is empty
         *
-        * @param       $stackerName    Name of the stack
+        * @param       $stackerName            Name of the stack
         * @return      $isEmpty                        Wether the stack is empty
         * @throws      NoStackerException      If given stack is missing
         */
@@ -116,10 +116,10 @@ class BaseStacker extends BaseFrameworkSystem {
                } // END - if
 
                // So, is the stack empty?
-               $isFull = (($this->getStackCount($stackerName)) == 0);
+               $isEmpty = (($this->getStackCount($stackerName)) == 0);
 
                // Return result
-               return $isFull;
+               return $isEmpty;
        }
 
        /**