PhpSpec\CodeAnalysis\VisibilityAccessInspector::isPropertyReadable PHP Method

isPropertyReadable() public method

public isPropertyReadable ( object $object, string $property ) : boolean
$object object
$property string
return boolean
    public function isPropertyReadable($object, $property)
    {
        return $this->isExistingPublicProperty($object, $property);
    }