X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fstacker%2Ffilo%2Fclass_FiLoStacker.php;h=ed98efcaaa01b6f3b27a4f927fffe589ce35c5da;hb=bf5ac2c720d822a65a32328ca4fa45a02836d6a4;hp=a2920fa6a2ad31a13795e8b10a75cf7e1bdcdca5;hpb=4fbcdb435270b88c8f97e69e987cb40712e74ce4;p=core.git diff --git a/inc/classes/main/stacker/filo/class_FiLoStacker.php b/inc/classes/main/stacker/filo/class_FiLoStacker.php index a2920fa6..ed98efca 100644 --- a/inc/classes/main/stacker/filo/class_FiLoStacker.php +++ b/inc/classes/main/stacker/filo/class_FiLoStacker.php @@ -2,11 +2,11 @@ /** * A FiLo Stacker class * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,17 +35,17 @@ class FiLoStacker extends BaseStacker implements Stackable { /** * Creates an instance of the class Stacker and prepares it for usage * - * @return $stackerInstance An instance of FiLoStacker + * @return $stackInstance An instance of FiLoStacker */ public static final function createFiLoStacker () { // Get a new instance - $stackerInstance = new FiLoStacker(); + $stackInstance = new FiLoStacker(); // Init the generic stacker - $stackerInstance->initStack('generic'); + $stackInstance->initStack('generic'); // Return the prepared instance - return $stackerInstance; + return $stackInstance; } /**