From 8f53ded4c90ec7cccb18333c1d7d8a4c16f0c3c8 Mon Sep 17 00:00:00 2001 From: "Buster \"Silver Eagle\" Neece" Date: Mon, 10 Jan 2022 16:04:03 -0600 Subject: [PATCH] Pass ref to attribute Response parent constructor. (#1057) --- src/Attributes/Response.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Attributes/Response.php b/src/Attributes/Response.php index 1d5135333..719aacc4b 100644 --- a/src/Attributes/Response.php +++ b/src/Attributes/Response.php @@ -23,6 +23,7 @@ public function __construct( ?array $attachables = null ) { parent::__construct([ + 'ref' => $ref ?? Generator::UNDEFINED, 'response' => $response ?? Generator::UNDEFINED, 'description' => $description ?? Generator::UNDEFINED, 'x' => $x ?? Generator::UNDEFINED,