<?php declare(strict_types=1);namespace DvdwDirectory\Content\Product\Struct;use Shopware\Core\Framework\Struct\Struct;class ProductListingLimitStruct extends Struct{ public CONST KEY = 'productListingLimit'; private int $productListingLimit; public function __construct(int $productListingLimit = 25) { $this->productListingLimit = $productListingLimit; } public function getProductListingLimit(): int { return $this->productListingLimit; }}