]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/stacker/fifo/class_FiFoStacker.php
Renamed 'stacker' to 'stack' as they are stacks (FiFo and "FiLo").
[core.git] / inc / classes / main / stacker / fifo / class_FiFoStacker.php
index 579b65f1fb41f0bb8c65daebf6684df028c31c1a..478290bea8520945f689a852d322a51d0a65b538 100644 (file)
@@ -35,17 +35,17 @@ class FiFoStacker extends BaseStacker implements Stackable {
        /**
         * Creates an instance of the class Stacker and prepares it for usage
         *
-        * @return      $stackerInstance        An instance of FiFoStacker
+        * @return      $stackInstance  An instance of FiFoStacker
         */
        public static final function createFiFoStacker () {
                // Get a new instance
-               $stackerInstance = new FiFoStacker();
+               $stackInstance = new FiFoStacker();
 
                // Init generic stacker
-               $stackerInstance->initStack('generic');
+               $stackInstance->initStack('generic');
 
                // Return the prepared instance
-               return $stackerInstance;
+               return $stackInstance;
        }
 
        /**