X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Fstacker%2Fclass_BaseStacker.php;h=be0a4c3adaea49ab5b01d991017575b6c5a8c76e;hp=a054afcaf338f966013f7bcb0138e0005aa04ade;hb=146c8b3c929a1b0ab17d6605e5ae949ac44899c1;hpb=d5dc929cca6a35725ff7af3446e2764e6c739d81 diff --git a/framework/main/classes/stacker/class_BaseStacker.php b/framework/main/classes/stacker/class_BaseStacker.php index a054afca..be0a4c3a 100644 --- a/framework/main/classes/stacker/class_BaseStacker.php +++ b/framework/main/classes/stacker/class_BaseStacker.php @@ -53,9 +53,9 @@ class BaseStacker extends BaseFrameworkSystem { * @return void * @throws AlreadyInitializedStackerException If the stack is already initialized */ - public function initStack ($stackerName, $forceReInit = FALSE) { + public function initStack ($stackerName, $forceReInit = false) { // Is the stack already initialized? - if (($forceReInit === FALSE) && ($this->isStackInitialized($stackerName))) { + if (($forceReInit === false) && ($this->isStackInitialized($stackerName))) { // Then throw the exception throw new AlreadyInitializedStackerException(array($this, $stackerName, $forceReInit), self::EXCEPTION_STACKER_ALREADY_INITIALIZED); } // END - if @@ -69,7 +69,7 @@ class BaseStacker extends BaseFrameworkSystem { * * @return void */ - public function initStacks (array $stacks, $forceReInit = FALSE) { + public function initStacks (array $stacks, $forceReInit = false) { // "Walk" through all (more will be added as needed foreach ($stacks as $stackerName) { // Init this stack