@@ -51,7 +51,7 @@ public function createTable($input): CreateTableOutput
5151 {
5252 $ response = $ this ->getResponse (CreateTableInput::create ($ input )->request ());
5353
54- return new CreateTableOutput ($ response, $ this -> httpClient );
54+ return new CreateTableOutput ($ response );
5555 }
5656
5757 /**
@@ -77,7 +77,7 @@ public function deleteItem($input): DeleteItemOutput
7777 {
7878 $ response = $ this ->getResponse (DeleteItemInput::create ($ input )->request ());
7979
80- return new DeleteItemOutput ($ response, $ this -> httpClient );
80+ return new DeleteItemOutput ($ response );
8181 }
8282
8383 /**
@@ -97,7 +97,7 @@ public function deleteTable($input): DeleteTableOutput
9797 {
9898 $ response = $ this ->getResponse (DeleteTableInput::create ($ input )->request ());
9999
100- return new DeleteTableOutput ($ response, $ this -> httpClient );
100+ return new DeleteTableOutput ($ response );
101101 }
102102
103103 /**
@@ -114,7 +114,7 @@ public function describeTable($input): DescribeTableOutput
114114 {
115115 $ response = $ this ->getResponse (DescribeTableInput::create ($ input )->request ());
116116
117- return new DescribeTableOutput ($ response, $ this -> httpClient );
117+ return new DescribeTableOutput ($ response );
118118 }
119119
120120 /**
@@ -137,7 +137,7 @@ public function getItem($input): GetItemOutput
137137 {
138138 $ response = $ this ->getResponse (GetItemInput::create ($ input )->request ());
139139
140- return new GetItemOutput ($ response, $ this -> httpClient );
140+ return new GetItemOutput ($ response );
141141 }
142142
143143 /**
@@ -156,7 +156,7 @@ public function listTables($input = []): ListTablesOutput
156156 $ input = ListTablesInput::create ($ input );
157157 $ response = $ this ->getResponse ($ input ->request ());
158158
159- return new ListTablesOutput ($ response , $ this -> httpClient , $ this , $ input );
159+ return new ListTablesOutput ($ response , $ this , $ input );
160160 }
161161
162162 /**
@@ -185,7 +185,7 @@ public function putItem($input): PutItemOutput
185185 {
186186 $ response = $ this ->getResponse (PutItemInput::create ($ input )->request ());
187187
188- return new PutItemOutput ($ response, $ this -> httpClient );
188+ return new PutItemOutput ($ response );
189189 }
190190
191191 /**
@@ -219,7 +219,7 @@ public function query($input): QueryOutput
219219 $ input = QueryInput::create ($ input );
220220 $ response = $ this ->getResponse ($ input ->request ());
221221
222- return new QueryOutput ($ response , $ this -> httpClient , $ this , $ input );
222+ return new QueryOutput ($ response , $ this , $ input );
223223 }
224224
225225 /**
@@ -252,7 +252,7 @@ public function scan($input): ScanOutput
252252 $ input = ScanInput::create ($ input );
253253 $ response = $ this ->getResponse ($ input ->request ());
254254
255- return new ScanOutput ($ response , $ this -> httpClient , $ this , $ input );
255+ return new ScanOutput ($ response , $ this , $ input );
256256 }
257257
258258 /**
@@ -282,7 +282,7 @@ public function updateItem($input): UpdateItemOutput
282282 {
283283 $ response = $ this ->getResponse (UpdateItemInput::create ($ input )->request ());
284284
285- return new UpdateItemOutput ($ response, $ this -> httpClient );
285+ return new UpdateItemOutput ($ response );
286286 }
287287
288288 /**
@@ -306,7 +306,7 @@ public function updateTable($input): UpdateTableOutput
306306 {
307307 $ response = $ this ->getResponse (UpdateTableInput::create ($ input )->request ());
308308
309- return new UpdateTableOutput ($ response, $ this -> httpClient );
309+ return new UpdateTableOutput ($ response );
310310 }
311311
312312 protected function getServiceCode (): string
0 commit comments