diff --git a/lib/Misc/ValueInfo.php b/lib/Misc/ValueInfo.php index bbeced9..f4d765b 100644 --- a/lib/Misc/ValueInfo.php +++ b/lib/Misc/ValueInfo.php @@ -34,7 +34,7 @@ class ValueInfo { const M_STRICT = 1 << 30; // throw an exception if the type doesn't match const M_ARRAY = 1 << 31; // the value should be a flat array of values of the specified type; indexed and associative are both acceptable - public function normalize($value, int $type, string $dateFormat = null) { + public static function normalize($value, int $type, string $dateFormat = null) { $allowNull = ($type & self::M_NULL); $strict = ($type & (self::M_STRICT | self::M_DROP)); $drop = ($type & self::M_DROP);