Fix spelling of VISIBILITY_MODIFIER_MASK

This commit is contained in:
Nikita Popov
2017-04-19 11:20:05 +02:00
parent c877c1a64f
commit 901b895c02
4 changed files with 7 additions and 5 deletions

View File

@ -69,7 +69,7 @@ class ClassMethod extends Node\Stmt implements FunctionLike
public function isPublic() {
return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0
|| ($this->flags & Class_::VISIBILITY_MODIFER_MASK) === 0;
|| ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0;
}
public function isProtected() {