BetterReflection\Reflection\ReflectionClass::hasConstant PHP Метод

hasConstant() публичный Метод

Does this class have the specified constant?
public hasConstant ( string $name ) : boolean
$name string
Результат boolean
    public function hasConstant($name)
    {
        return null !== $this->getConstant($name);
    }

Usage Example

Пример #1
0
 /**
  * {@inheritDoc}
  */
 public function hasConstant($name)
 {
     return $this->betterReflectionClass->hasConstant($name);
 }