From a7db0c92f5ba2234db0a0005f9ee200a8b6a06bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Fri, 6 Oct 2023 12:58:40 +0200 Subject: [PATCH] indicate that transformer_info might be more complex --- architecture design proposal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/architecture design proposal.md b/architecture design proposal.md index eb7e707..f1caabf 100755 --- a/architecture design proposal.md +++ b/architecture design proposal.md @@ -134,7 +134,7 @@ A solution could be to define a transformer interface and let the transformers b ```php interface Transformer { public function get_supported_post_types(): array; - public function get_transformer_info(): string; + public function get_transformer_info(): array; public function to_object(WP_Post $post); .... }