Devise\Pages\Viewvars\DataCrawler::propertyAvailable PHP Method

propertyAvailable() private method

Tells us if this property is available on this object
private propertyAvailable ( object $object, string $name ) : mixed
$object object
$name string
return mixed
    private function propertyAvailable($object, $name)
    {
        try {
            return $object->{$name};
        } catch (\Exception $e) {
        }
        return self::PARAM_NOT_FOUND;
    }