Beispiel #1
0
 /**
  * Insert an item into a collection with the provided data.
  *
  * @param array $data An array of data representing the properties of the item.
  * @param array $options Options for the insert.
  *
  * @return mixed The unique key of the inserted item or false.
  */
 public function insert($data, $options = [])
 {
     return $this->peer->insert($data, $options);
 }