feat: distinguish error and info feedbacks

This commit is contained in:
Björn Fromme
2025-03-24 16:30:21 +01:00
parent 1498bdb53b
commit c8d8c62ff8
3 changed files with 13 additions and 14 deletions
+2 -7
View File
@@ -13,13 +13,8 @@ class Notification
public ?int $code;
public ?string $message;
public function isSuccessful(): bool
public function isError(): bool
{
// Successful responses don't carry codes and messages
if (null === $this->code && null === $this->message) {
return true;
}
return 650 === $this->code && false === stripos($this->message, 'fehler');
return 650 !== $this->code;
}
}