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