mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 08:58:35 +00:00
docs: fix php delete class phpdocs
This commit is contained in:
parent
28588d83cf
commit
0f89e28116
1 changed files with 18 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue