]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/stacker/class_
Renamed 'stacker' to 'stack' as they are stacks (FiFo and "FiLo").
[core.git] / inc / classes / main / stacker / class_
index ff8387b2c38a537efbd36c16d4cd165409c96109..87bbaf6ec15fa39214c7910d81239d8ca9f21fbe 100644 (file)
@@ -36,17 +36,17 @@ class ???Stacker extends BaseStacker implements Stackable {
         * Creates an instance of the class Stacker and prepares it for usage
         *
         * @param       $appInstance    A manageable application
-        * @return      $stackerInstance        An instance of ???Stacker
+        * @return      $stackInstance  An instance of ???Stacker
         */
        public final static function create???Stacker (ManageableApplication $appInstance) {
                // Get a new instance
-               $stackerInstance = new ???Stacker();
+               $stackInstance = new ???Stacker();
 
                // Init generic stacker
-               $stackerInstance->initStack('generic');
+               $stackInstance->initStack('generic');
 
                // Return the prepared instance
-               return $stackerInstance;
+               return $stackInstance;
        }
 
        /**