X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fproducer%2Fclass_BaseProducer.php;h=a60634a899d7d3b157d811a6c6e002f4378769bb;hb=62f2546efa5ec7585c5ce216e6a9676595b1b30b;hp=0dca07cadbdddaee24df6bbb1eda32304673f94d;hpb=908351536bc4b941f71da717cf11ad22a2c23f65;p=hub.git diff --git a/application/hub/main/producer/class_BaseProducer.php b/application/hub/main/producer/class_BaseProducer.php index 0dca07cad..a60634a89 100644 --- a/application/hub/main/producer/class_BaseProducer.php +++ b/application/hub/main/producer/class_BaseProducer.php @@ -2,11 +2,11 @@ /** * A general Producer class * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Hub 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 @@ -133,7 +133,7 @@ abstract class BaseProducer extends BaseFrameworkSystem { * @return void */ protected function initOutgoingQueue () { - $this->getOutgoingQueueInstance()->initStacker(self::STACKER_NAME_OUT_QUEUE, true); + $this->getOutgoingQueueInstance()->initStack(self::STACKER_NAME_OUT_QUEUE, TRUE); } /** @@ -152,7 +152,7 @@ abstract class BaseProducer extends BaseFrameworkSystem { * @param $configEntry Configuration entry where the limit is stored * @return $isReached Whether the limit is reached */ - protected function isOutgoingQueueLimitReached($configEntry) { + protected function isOutgoingQueueLimitReached ($configEntry) { return ($this->getConfigInstance()->getConfigEntry($configEntry) <= $this->getOutgoingQueueInstance()->getStackCount(self::STACKER_NAME_OUT_QUEUE)); } @@ -162,7 +162,7 @@ abstract class BaseProducer extends BaseFrameworkSystem { * @return void */ protected function initIncomingQueue () { - $this->getIncomingQueueInstance()->initStacker(self::STACKER_NAME_IN_QUEUE, true); + $this->getIncomingQueueInstance()->initStack(self::STACKER_NAME_IN_QUEUE, TRUE); } /**