BetterReflection\Reflection\ReflectionProperty::isStatic PHP Method

isStatic() public method

Is the property static?
public isStatic ( ) : boolean
return boolean
    public function isStatic()
    {
        return $this->node->isStatic();
    }

Usage Example

Exemplo n.º 1
0
 function it_can_be_static(ReflectionProperty $reflectionProperty)
 {
     $reflectionProperty->isStatic()->willReturn(false);
     $this->isStatic()->shouldBe(false);
     $reflectionProperty->isStatic()->willReturn(true);
     $this->isStatic()->shouldBe(true);
 }
All Usage Examples Of BetterReflection\Reflection\ReflectionProperty::isStatic