> $items */ public function __construct( private readonly ServerRequestInterface $request, private array $items ) {} public function getRequest(): ServerRequestInterface { return $this->request; } public function getItems(): array { return $this->items; } public function setItems(array $items): void { $this->items = $items; } }