Example #1
0
 /**
  * Flush creates
  *
  * @param string $objectType
  * @return SaveResult[]
  */
 private function flushCreates($objectType)
 {
     $result = $this->client->create($this->bulkCreateRecords[$objectType], $objectType);
     $this->bulkCreateRecords[$objectType] = array();
     return $result;
 }