/** * Returns a single document data by ID or null if document is not found. * * @param string $id Document ID to find * * @return object */ public function find($id) { return $this->manager->find($this->type, $id); }