Make MDProcessType JSON serializable

This commit is contained in:
2022-10-16 01:13:33 +02:00
parent 42a02c186a
commit b6dcffdea4
2 changed files with 19 additions and 1 deletions

View File

@ -55,4 +55,11 @@ interface MDValueEnumInterface {
* @return string
*/
public function getTledName(MDTlLoader $tlLoader):string;
/**
* Provides the option to serialize as a string during json_encode().
*
* @return string
*/
public function jsonSerialize():string;
}