mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
Fix public modifier check for ClassMethod node
This commit is contained in:
parent
5e6627c895
commit
0fbb5f90a1
@ -75,7 +75,7 @@ class ClassMethod extends Node\Stmt implements FunctionLike
|
||||
}
|
||||
|
||||
public function isPublic() {
|
||||
return ($this->type & Class_::MODIFIER_PUBLIC) !== 0 || $this->type === 0;
|
||||
return ($this->type & Class_::MODIFIER_PUBLIC) !== 0 || (!$this->isPrivate() && !$this->isProtected());
|
||||
}
|
||||
|
||||
public function isProtected() {
|
||||
|
Loading…
Reference in New Issue
Block a user