BetterReflection\Reflection\ReflectionClass::isUserDefined PHP 메소드

isUserDefined() 공개 메소드

Is this a user-defined function (will always return the opposite of whatever isInternal returns).
public isUserDefined ( ) : boolean
리턴 boolean
    public function isUserDefined()
    {
        return !$this->isInternal();
    }

Usage Example

예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function isUserDefined()
 {
     return $this->betterReflectionClass->isUserDefined();
 }