BetterReflection\Reflection\ReflectionClass::hasProperty PHP Method

hasProperty() public method

Does this class have the specified property?
public hasProperty ( string $name ) : boolean
$name string
return boolean
    public function hasProperty($name)
    {
        return null !== $this->getProperty($name);
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function hasProperty($name)
 {
     return $this->betterReflectionClass->hasProperty($name);
 }