You are here

public function Radioactivity::setTimestamp in Radioactivity 4.0.x

Sets the timestamp value.

Parameters

int $timestamp: The timestamp value.

Overrides RadioactivityInterface::setTimestamp

File

src/Entity/Radioactivity.php, line 87

Class

Radioactivity
Defines the radioactivity entity class.

Namespace

Drupal\radioactivity\Entity

Code

public function setTimestamp($timestamp) {
  $this
    ->set('timestamp', $timestamp);
}