Kleine Korrekturen wegen PHP 8.1

This commit is contained in:
2025-05-01 17:53:30 +02:00
parent dff3c7f34d
commit b094cf8180
4 changed files with 5 additions and 7 deletions
@@ -8,13 +8,8 @@ class HttpConflictRequestException extends HttpSpecializedException
{
/** @var int */
protected $code = 409;
/** @var string */
protected $message = 'Conflict.';
/** @var string */
protected $title = '409 Conflict';
/** @var string */
protected $description = 'The 409 (Conflict) status code indicates that the request could not be completed due to a conflict with the current state of the target resource.';
protected string $title = '409 Conflict';
protected string $description = 'The 409 (Conflict) status code indicates that the request could not be completed due to a conflict with the current state of the target resource.';
}