public function DeliveryCandidate::setAccountId in Message Subscribe 8
Sets the account ID.
Parameters
int $uid: The account ID of the delivery candidate.
Return value
static Return the object.
Overrides DeliveryCandidateInterface::setAccountId
File
- src/
Subscribers/ DeliveryCandidate.php, line 119
Class
- DeliveryCandidate
- A delivery candidate implementation.
Namespace
Drupal\message_subscribe\SubscribersCode
public function setAccountId($uid) {
$this->uid = $uid;
return $this;
}