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 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Changed
6
+
7
+ - Avoid usage of ` alias ` when use statement refers to self
8
+
5
9
## 2.1.0
6
10
7
11
### Added
Original file line number Diff line number Diff line change 2
2
3
3
namespace AsyncAws \TimestreamQuery \ValueObject ;
4
4
5
- use AsyncAws \TimestreamQuery \ValueObject \Datum as Datum1 ;
6
-
7
5
/**
8
6
* Datum represents a single data point in a query result.
9
7
*/
@@ -57,7 +55,7 @@ public function __construct(array $input)
57
55
{
58
56
$ this ->scalarValue = $ input ['ScalarValue ' ] ?? null ;
59
57
$ 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 ;
61
59
$ this ->rowValue = isset ($ input ['RowValue ' ]) ? Row::create ($ input ['RowValue ' ]) : null ;
62
60
$ this ->nullValue = $ input ['NullValue ' ] ?? null ;
63
61
}
You can’t perform that action at this time.
0 commit comments