findOneAndDelete() public method

public findOneAndDelete ( $collectionName, $filter, array $options = [] )
$options array
Example #1
0
File: Mongo.php Project: webiny/hrc
 /**
  * Removes the index entry for the given cache key.
  *
  * @param string $key
  *
  * @return bool True if delete was successful, otherwise false.
  */
 public function deleteEntryByKey($key)
 {
     $this->mongoInstance->findOneAndDelete(self::collection, ['key' => $key]);
     return true;
 }