Fix return types
This commit is contained in:
parent
91a3ee9c6b
commit
59e85ac02c
|
@ -21,7 +21,7 @@ enum MDCustomReportFormat implements JsonSerializable {
|
||||||
*
|
*
|
||||||
* @return MDCustomReportTarget
|
* @return MDCustomReportTarget
|
||||||
*/
|
*/
|
||||||
public static function fromString(string $input):MDObjectDamageType {
|
public static function fromString(string $input):MDCustomReportFormat {
|
||||||
|
|
||||||
return match($input) {
|
return match($input) {
|
||||||
'csv' => self::csv,
|
'csv' => self::csv,
|
||||||
|
|
|
@ -21,12 +21,12 @@ enum MDCustomReportTarget implements MDValueEnumInterface, JsonSerializable {
|
||||||
*
|
*
|
||||||
* @return MDCustomReportTarget
|
* @return MDCustomReportTarget
|
||||||
*/
|
*/
|
||||||
public static function fromString(string $input):MDObjectDamageType {
|
public static function fromString(string $input):MDCustomReportTarget {
|
||||||
|
|
||||||
return match($input) {
|
return match($input) {
|
||||||
'object_single' => self::object_single,
|
'object_single' => self::object_single,
|
||||||
'object_list' => self::object_list,
|
'object_list' => self::object_list,
|
||||||
default => throw new MDpageParameterNotFromListException("Unknown custom report target"),
|
default => throw new MDpageParameterNotFromListException("Unknown custom report target: " . $input),
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user