From 3267a5d344ee6034a8728948347e9789e588d1d4 Mon Sep 17 00:00:00 2001 From: wiese Date: Fri, 22 Oct 2021 15:22:42 +0200 Subject: [PATCH] fix: schema.org: attribute syntax This seems to have slipped through in "Change annotations to attributes" (#1428) when converting from annotations. --- admin/schema.org.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/schema.org.md b/admin/schema.org.md index 1f600209588..f2c16792df6 100644 --- a/admin/schema.org.md +++ b/admin/schema.org.md @@ -17,7 +17,7 @@ To configure which property should be shown to represent your entity, map the pr ```php // api/src/Entity/Person.php -#[ApiProperty(iri="http://schema.org/name")] +#[ApiProperty(iri: "http://schema.org/name")] private $name; ```