You are here

public function Slider::setOwnerId in Image sliders 8

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/Slider.php, line 95

Class

Slider
Defines the SliderEntityExample entity.

Namespace

Drupal\image_slider\Entity

Code

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