Skip to content

Commit 815ed87

Browse files
author
twalder-docnet
committed
Remove integer cast to support annoying (Google) 32 bit systems
1 parent efa143d commit 815ed87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GDS/Gateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ public function fetchByIds($str_kind, array $arr_ids)
233233
$obj_key = new \Google_Service_Datastore_Key();
234234
$obj_element = new \Google_Service_Datastore_KeyPathElement();
235235
$obj_element->setKind($str_kind);
236-
$obj_element->setId((int)$int_id);
236+
$obj_element->setId($int_id);
237237
$obj_key->setPath([$obj_element]);
238238
$arr_keys[] = $obj_key;
239239
}

0 commit comments

Comments
 (0)