File tree 6 files changed +14
-14
lines changed
6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class ArchivalSummary
22
22
23
23
/**
24
24
* @param array{
25
- * ArchivalDateTime?: null|\DateTimeInterface ,
25
+ * ArchivalDateTime?: null|\DateTimeImmutable ,
26
26
* ArchivalReason?: null|string,
27
27
* ArchivalBackupArn?: null|string,
28
28
* } $input
@@ -44,7 +44,7 @@ public function getArchivalBackupArn(): ?string
44
44
return $ this ->ArchivalBackupArn ;
45
45
}
46
46
47
- public function getArchivalDateTime (): ?\DateTimeInterface
47
+ public function getArchivalDateTime (): ?\DateTimeImmutable
48
48
{
49
49
return $ this ->ArchivalDateTime ;
50
50
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ class BillingModeSummary
20
20
/**
21
21
* @param array{
22
22
* BillingMode?: null|\AsyncAws\DynamoDb\Enum\BillingMode::*,
23
- * LastUpdateToPayPerRequestDateTime?: null|\DateTimeInterface ,
23
+ * LastUpdateToPayPerRequestDateTime?: null|\DateTimeImmutable ,
24
24
* } $input
25
25
*/
26
26
public function __construct (array $ input )
@@ -42,7 +42,7 @@ public function getBillingMode(): ?string
42
42
return $ this ->BillingMode ;
43
43
}
44
44
45
- public function getLastUpdateToPayPerRequestDateTime (): ?\DateTimeInterface
45
+ public function getLastUpdateToPayPerRequestDateTime (): ?\DateTimeImmutable
46
46
{
47
47
return $ this ->LastUpdateToPayPerRequestDateTime ;
48
48
}
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ class ProvisionedThroughputDescription
36
36
37
37
/**
38
38
* @param array{
39
- * LastIncreaseDateTime?: null|\DateTimeInterface ,
40
- * LastDecreaseDateTime?: null|\DateTimeInterface ,
39
+ * LastIncreaseDateTime?: null|\DateTimeImmutable ,
40
+ * LastDecreaseDateTime?: null|\DateTimeImmutable ,
41
41
* NumberOfDecreasesToday?: null|string,
42
42
* ReadCapacityUnits?: null|string,
43
43
* WriteCapacityUnits?: null|string,
@@ -57,12 +57,12 @@ public static function create($input): self
57
57
return $ input instanceof self ? $ input : new self ($ input );
58
58
}
59
59
60
- public function getLastDecreaseDateTime (): ?\DateTimeInterface
60
+ public function getLastDecreaseDateTime (): ?\DateTimeImmutable
61
61
{
62
62
return $ this ->LastDecreaseDateTime ;
63
63
}
64
64
65
- public function getLastIncreaseDateTime (): ?\DateTimeInterface
65
+ public function getLastIncreaseDateTime (): ?\DateTimeImmutable
66
66
{
67
67
return $ this ->LastIncreaseDateTime ;
68
68
}
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class RestoreSummary
28
28
* @param array{
29
29
* SourceBackupArn?: null|string,
30
30
* SourceTableArn?: null|string,
31
- * RestoreDateTime: \DateTimeInterface ,
31
+ * RestoreDateTime: \DateTimeImmutable ,
32
32
* RestoreInProgress: bool,
33
33
* } $input
34
34
*/
@@ -45,7 +45,7 @@ public static function create($input): self
45
45
return $ input instanceof self ? $ input : new self ($ input );
46
46
}
47
47
48
- public function getRestoreDateTime (): \DateTimeInterface
48
+ public function getRestoreDateTime (): \DateTimeImmutable
49
49
{
50
50
return $ this ->RestoreDateTime ;
51
51
}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class SSEDescription
35
35
* Status?: null|\AsyncAws\DynamoDb\Enum\SSEStatus::*,
36
36
* SSEType?: null|\AsyncAws\DynamoDb\Enum\SSEType::*,
37
37
* KMSMasterKeyArn?: null|string,
38
- * InaccessibleEncryptionDateTime?: null|\DateTimeInterface ,
38
+ * InaccessibleEncryptionDateTime?: null|\DateTimeImmutable ,
39
39
* } $input
40
40
*/
41
41
public function __construct (array $ input )
@@ -51,7 +51,7 @@ public static function create($input): self
51
51
return $ input instanceof self ? $ input : new self ($ input );
52
52
}
53
53
54
- public function getInaccessibleEncryptionDateTime (): ?\DateTimeInterface
54
+ public function getInaccessibleEncryptionDateTime (): ?\DateTimeImmutable
55
55
{
56
56
return $ this ->InaccessibleEncryptionDateTime ;
57
57
}
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class TableDescription
128
128
* TableName?: null|string,
129
129
* KeySchema?: null|\AsyncAws\DynamoDb\ValueObject\KeySchemaElement[],
130
130
* TableStatus?: null|\AsyncAws\DynamoDb\Enum\TableStatus::*,
131
- * CreationDateTime?: null|\DateTimeInterface ,
131
+ * CreationDateTime?: null|\DateTimeImmutable ,
132
132
* ProvisionedThroughput?: null|\AsyncAws\DynamoDb\ValueObject\ProvisionedThroughputDescription|array,
133
133
* TableSizeBytes?: null|string,
134
134
* ItemCount?: null|string,
@@ -195,7 +195,7 @@ public function getBillingModeSummary(): ?BillingModeSummary
195
195
return $ this ->BillingModeSummary ;
196
196
}
197
197
198
- public function getCreationDateTime (): ?\DateTimeInterface
198
+ public function getCreationDateTime (): ?\DateTimeImmutable
199
199
{
200
200
return $ this ->CreationDateTime ;
201
201
}
You can’t perform that action at this time.
0 commit comments