fix response expiration event

This commit is contained in:
yggverse 2024-07-15 17:23:21 +03:00
parent 1079da78b5
commit 5c2aeec8cc
2 changed files with 20 additions and 11 deletions

View file

@ -15,7 +15,6 @@ class Response
// Async status
private bool $_completed = false;
private bool $_expired = false;
// Response
private ?string $_title = null;
@ -293,11 +292,6 @@ class Response
return $this->_completed;
}
public function isExpired(): bool
{
return $this->_expired;
}
public function getTitle(): ?string
{
return $this->_title;