Google\Cloud\Datastore\EntityMapper::getPropertyValue PHP Метод

getPropertyValue() приватный Метод

Determine the property type and return a converted value
private getPropertyValue ( array $property ) : mixed
$property array The API property
Результат mixed
    private function getPropertyValue(array $property)
    {
        $type = $this->getValueType($property);
        return $this->convertValue($type, $property[$type]);
    }