BetterReflection\Reflection\ReflectionClass::hasConstant PHP Method

hasConstant() public method

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

Usage Example

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