From c0e16e2e3d3c6f5adb62a559cd222a3711d57629 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Sat, 5 Dec 2020 23:51:00 +0000 Subject: [PATCH] fixed syntax error, by adding trailing semicolon. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351914 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/attributes.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/attributes.xml b/language/attributes.xml index ed0cf5c3f1..8a4dc9b2a2 100755 --- a/language/attributes.xml +++ b/language/attributes.xml @@ -81,7 +81,7 @@ function executeAction(ActionHandler $actionHandler) { $reflection = new ReflectionObject($actionHandler); foreach ($reflection->getMethods() as $method) { - $attributes = $reflection->getAttributes(SetUp::class) + $attributes = $reflection->getAttributes(SetUp::class); if (count($attributes) > 0) { $methodName = $method->getName();