Update deps; minor tweaks

This commit is contained in:
2024-07-19 08:25:08 -04:00
parent ff34bb9743
commit 9110643383
4 changed files with 42 additions and 41 deletions

View File

@@ -60,7 +60,7 @@ class Request implements JsonSerializable
*/
public function isAnswered(): bool
{
return $this->history[0]->action == RequestAction::Answered;
return $this->history[0]->action === RequestAction::Answered;
}
/**