1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

docs: fix php delete class phpdocs

This commit is contained in:
Torsten Dittmann 2022-05-10 14:33:31 +02:00
parent 28588d83cf
commit 0f89e28116

View file

@ -41,6 +41,12 @@ class Delete extends Event
return $this->type;
}
/**
* Set timestamp.
*
* @param int $timestamp
* @return self
*/
public function setTimestamp(int $timestamp): self
{
$this->timestamp = $timestamp;
@ -48,6 +54,12 @@ class Delete extends Event
return $this;
}
/**
* Set timestamp for 1 day interval.
*
* @param int $timestamp
* @return self
*/
public function setTimestamp1d(int $timestamp): self
{
$this->timestamp1d = $timestamp;
@ -55,6 +67,12 @@ class Delete extends Event
return $this;
}
/**
* Sets timestamp for 30m interval.
*
* @param int $timestamp
* @return self
*/
public function setTimestamp30m(int $timestamp): self
{
$this->timestamp30m = $timestamp;