File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Changed
6+
7+ - Avoid usage of ` alias ` when use statement refers to self
8+
59## 2.1.0
610
711### Added
Original file line number Diff line number Diff line change 22
33namespace AsyncAws \TimestreamQuery \ValueObject ;
44
5- use AsyncAws \TimestreamQuery \ValueObject \Datum as Datum1 ;
6-
75/**
86 * Datum represents a single data point in a query result.
97 */
@@ -57,7 +55,7 @@ public function __construct(array $input)
5755 {
5856 $ this ->scalarValue = $ input ['ScalarValue ' ] ?? null ;
5957 $ this ->timeSeriesValue = isset ($ input ['TimeSeriesValue ' ]) ? array_map ([TimeSeriesDataPoint::class, 'create ' ], $ input ['TimeSeriesValue ' ]) : null ;
60- $ this ->arrayValue = isset ($ input ['ArrayValue ' ]) ? array_map ([Datum1 ::class, 'create ' ], $ input ['ArrayValue ' ]) : null ;
58+ $ this ->arrayValue = isset ($ input ['ArrayValue ' ]) ? array_map ([Datum ::class, 'create ' ], $ input ['ArrayValue ' ]) : null ;
6159 $ this ->rowValue = isset ($ input ['RowValue ' ]) ? Row::create ($ input ['RowValue ' ]) : null ;
6260 $ this ->nullValue = $ input ['NullValue ' ] ?? null ;
6361 }
You can’t perform that action at this time.
0 commit comments