You are here

public function Poll::close in Poll 8

Sets the poll to closed.

Overrides PollInterface::close

File

src/Entity/Poll.php, line 184

Class

Poll
Defines the poll entity class.

Namespace

Drupal\poll\Entity

Code

public function close() {
  return $this
    ->set('status', 0);
}