/**
  * Set subscriber state
  *
  * @param int $id subscriber id
  * @param int $checked verification progress state
  * @throws \Deliveries\Exceptions\StorageException
  * @return int
  */
 public function setSubscriberState($id, $checked)
 {
     return $this->storageInstance->setSubscriberState($id, $checked);
 }