fixed syntax error, by adding trailing semicolon.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351914 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yoshinari Takaoka 2020-12-05 23:51:00 +00:00
parent 720f4daa5c
commit c0e16e2e3d

View file

@ -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();