From: Roland Häder Date: Thu, 10 Dec 2020 03:00:44 +0000 (+0100) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=260b0cd22db4fb3191706893ba9d7554a9de9d3e;p=core.git Continued: - moved $minimumBlockLength to BaseFileIndex Signed-off-by: Roland Häder --- diff --git a/framework/main/classes/index/class_BaseIndex.php b/framework/main/classes/index/class_BaseIndex.php index fe369b74..d15d2ea0 100644 --- a/framework/main/classes/index/class_BaseIndex.php +++ b/framework/main/classes/index/class_BaseIndex.php @@ -41,11 +41,6 @@ abstract class BaseIndex extends BaseFrameworkSystem implements Indexable { // Load traits use IteratorTrait; - /** - * Minimum block length - */ - private static $minimumBlockLength = 0; - /** * Protected constructor * diff --git a/framework/main/classes/index/file/class_BaseFileIndex.php b/framework/main/classes/index/file/class_BaseFileIndex.php index 360645bb..4af824a1 100644 --- a/framework/main/classes/index/file/class_BaseFileIndex.php +++ b/framework/main/classes/index/file/class_BaseFileIndex.php @@ -37,6 +37,11 @@ use \UnexpectedValueException; * along with this program. If not, see . */ abstract class BaseFileIndex extends BaseIndex implements FileIndexer { + /** + * Minimum block length + */ + private static $minimumBlockLength = 0; + /** * Protected constructor *