示例#1
0
文件: Method.php 项目: kdyby/aop
 /**
  * @return string
  */
 public function getVisibility()
 {
     return $this->method->isPublic() ? self::VISIBILITY_PUBLIC : ($this->method->isProtected() ? self::VISIBILITY_PROTECTED : self::VISIBILITY_PRIVATE);
 }