fix: apply correct return type and response handling

This commit is contained in:
Björn Fromme
2026-01-06 14:05:51 +01:00
parent 96205c14db
commit 1c1766bbd4
4 changed files with 9 additions and 8 deletions
@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace App\BusProNet\Model;
class RegistrationResponse
{
public function __construct(
public readonly int $addressId,
public readonly int $personId,
public readonly bool $isNewRecord,
) {
}
}