You are here

public function EntityformSubmission::setRevisionAuthorId in Entityform 8.3

Same name and namespace in other branches
  1. 8.2 lib/Drupal/entityform/Entity/EntityformSubmission.php \Drupal\entityform\Entity\EntityformSubmission::setRevisionAuthorId()

File

src/Entity/EntityformSubmission.php, line 155
Definition of Drupal\entityform\Entity\EntityformSubmission.

Class

EntityformSubmission
Defines the entityform entity class.

Namespace

Drupal\entityform\Entity

Code

public function setRevisionAuthorId($uid) {
  $this
    ->set('revision_uid', $uid);
  return $this;
}