diff --git a/src/MDEventsSet.php b/src/MDEventsSet.php index c872ff3..ef34350 100644 --- a/src/MDEventsSet.php +++ b/src/MDEventsSet.php @@ -57,7 +57,7 @@ class MDEventsSet extends MDValueSet { * @return array */ public static function getSortedList(MDTlLoader $tlLoader):array { - return parent::getSortedList($tlLoader, self::EVENT_IDS, "eventtype_name", "eventname"); + return parent::getTlSortedList($tlLoader, self::EVENT_IDS, "eventtype_name", "eventname"); } diff --git a/src/MDMarkingTypesSet.php b/src/MDMarkingTypesSet.php index 1310802..ba41ce9 100644 --- a/src/MDMarkingTypesSet.php +++ b/src/MDMarkingTypesSet.php @@ -29,7 +29,7 @@ class MDMarkingTypesSet extends MDValueSet { * @return array */ public static function getSortedList(MDTlLoader $tlLoader):array { - return parent::getSortedList($tlLoader, self::MARKING_TYPES, "marking_types", "marking_types"); + return parent::getTlSortedList($tlLoader, self::MARKING_TYPES, "marking_types", "marking_types"); } diff --git a/src/MDValueSet.php b/src/MDValueSet.php index 9961ae5..5a0008e 100644 --- a/src/MDValueSet.php +++ b/src/MDValueSet.php @@ -20,7 +20,7 @@ class MDValueSet { * * @return array */ - public static function getSortedList(MDTlLoader $tlLoader, array $keyList, string $tlFileName, string $tlVarName):array { + public static function getTlSortedList(MDTlLoader $tlLoader, array $keyList, string $tlFileName, string $tlVarName):array { $output = []; foreach ($keyList as $tID) {