small fix

This commit is contained in:
shimon
2022-09-13 10:42:42 +03:00
parent b86f7689ec
commit 1d382cc542
2 changed files with 1 additions and 24 deletions
-23
View File
@@ -108,29 +108,6 @@ class Audit extends Event
return $this->ip;
}
/**
* Set description for this audit event
*
* @param string $event
* @return self
*/
public function setEvent(string $event): self
{
$this->event = $event;
return $this;
}
/**
* Returns the audit event description.
*
* @return string
*/
public function getEvent(): string
{
return $this->event;
}
/**
* Executes the event and sends it to the audit worker.
*