-
Notifications
You must be signed in to change notification settings - Fork 121
Closed
Description
Generator has an error of public/private/protection attribute detection in files:
\src\generator\project\objects\MethodObject.php
\src\generator\project\objects\MemberObject.php
public function isPublic() {
return $this->node->getAttribute('visibility', 'public') == 'public';
}
public function isPrivate() {
return $this->node->getAttribute('visibility', 'public') == 'private';
}
public function isProtected() {
return $this->node->getAttribute('visibility', 'public') == 'protected';
}
Metadata
Metadata
Assignees
Labels
No labels