Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 10 Dec 2020 03:00:44 +0000 (04:00 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 10 Dec 2020 03:00:44 +0000 (04:00 +0100)
- moved $minimumBlockLength to BaseFileIndex

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/index/class_BaseIndex.php
framework/main/classes/index/file/class_BaseFileIndex.php

index fe369b742cd2106557bd65059b078703544fa6c2..d15d2ea095e705c6e36f7bc0d12115f1b073f82f 100644 (file)
@@ -41,11 +41,6 @@ abstract class BaseIndex extends BaseFrameworkSystem implements Indexable {
        // Load traits
        use IteratorTrait;
 
-       /**
-        * Minimum block length
-        */
-       private static $minimumBlockLength = 0;
-
        /**
         * Protected constructor
         *
index 360645bb88c62a552eacccf47c138b196c08dc8b..4af824a1ab4fb47685a5d16725520585990147b5 100644 (file)
@@ -37,6 +37,11 @@ use \UnexpectedValueException;
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 abstract class BaseFileIndex extends BaseIndex implements FileIndexer {
+       /**
+        * Minimum block length
+        */
+       private static $minimumBlockLength = 0;
+
        /**
         * Protected constructor
         *