]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/stacker/class_BaseStacker.php
Some methods are now public and added to the interface
[core.git] / inc / classes / main / stacker / class_BaseStacker.php
index 4225cb731b57e7ee7c895ae056c70613a8111441..5c25e928ee0dabcb1e8088727d8fd1a81a9a276e 100644 (file)
@@ -71,7 +71,7 @@ class BaseStacker extends BaseFrameworkSystem {
         * @param       $stackerName    Name of the stack
         * @return      $isInitialized  Wether the stack is initialized
         */
-       protected final function isStackInitialized ($stackerName) {
+       public final function isStackInitialized ($stackerName) {
                // Is is there?
                $isInitialized = ((isset($this->stacks[$stackerName])) && (is_array($this->stacks[$stackerName])));
 
@@ -86,7 +86,7 @@ class BaseStacker extends BaseFrameworkSystem {
         * @return      $isFull                 Wether the stack is full
         * @throws      NoStackerException      If given stack is missing
         */
-       protected final function isStackFull($stackerName) {
+       protected final function isStackFull ($stackerName) {
                // Is the stack not yet initialized?
                if (!$this->isStackInitialized($stackerName)) {
                        // Throw an exception
@@ -107,7 +107,7 @@ class BaseStacker extends BaseFrameworkSystem {
         * @return      $isEmpty                        Wether the stack is empty
         * @throws      NoStackerException      If given stack is missing
         */
-       protected final function isStackEmpty($stackerName) {
+       public final function isStackEmpty ($stackerName) {
                // Is the stack not yet initialized?
                if (!$this->isStackInitialized($stackerName)) {
                        // Throw an exception