public function Job::setOwnerId

1 call to Job::setOwnerId()
Job::requestTranslation in src/Entity/Job.php
Request the translation of a job from the translator.

File

src/Entity/Job.php, line 1013

Class

Job
Entity class for the tmgmt_job entity.

Namespace

Drupal\tmgmt\Entity

Code

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