From 737824e83fe380370d2c78764b70c3d56e1ea2b2 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Fri, 16 Dec 2022 22:45:35 +0100 Subject: [PATCH] Fix broken reference to class constant in MDColorsSet --- src/MDColorsSet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MDColorsSet.php b/src/MDColorsSet.php index bef4d7b..3e3d988 100644 --- a/src/MDColorsSet.php +++ b/src/MDColorsSet.php @@ -77,7 +77,7 @@ final class MDColorsSet extends MDValueSet { * @return array */ public static function getUnsortedList(MDTlLoader $tlLoader):array { - return parent::getTlUnsortedList($tlLoader, self::GENDERS, "gender_set", "gender_set"); + return parent::getTlUnsortedList($tlLoader, self::COLOR_NAMES, "colors_set", "colors_set"); }