<?phpdeclare(strict_types=1);namespace Slivki\Message\Query\GiftCertificate;use Slivki\Messenger\Query\QueryInterface;final class GetGiftCertificateCategoriesQuery implements QueryInterface{ private int $offerId; public function __construct(int $offerId) { $this->offerId = $offerId; } public function getOfferId(): int { return $this->offerId; }}