From 6e3158e9d61f46b071859193c70dbf8ff10c75ec Mon Sep 17 00:00:00 2001 From: Robin Krahnen Date: Wed, 7 Nov 2018 17:19:04 +0100 Subject: [PATCH] use '=' instead of ':' als delimiter between key and value in annotation options --- Tests/Functional/Fixtures/TestObject.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Functional/Fixtures/TestObject.php b/Tests/Functional/Fixtures/TestObject.php index ddd62c5..b91587a 100644 --- a/Tests/Functional/Fixtures/TestObject.php +++ b/Tests/Functional/Fixtures/TestObject.php @@ -16,7 +16,7 @@ class TestObject protected $shouldBeFalse = true; /** - * @Flow\Validate(type="DigiComp.SettingValidator:Settings", options={"name": "TrueValidator"}) + * @Flow\Validate(type="DigiComp.SettingValidator:Settings", options={"name"="TrueValidator"}) * @var bool */ protected $shouldBeTrueAndValidatedByAnnotation = false;