Skip to content

Commit 11106ac

Browse files
authored
Generate the property type for generated objects (#1467)
1 parent 2dff34b commit 11106ac

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/Exception/ValidationException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ final class ValidationException extends ClientException
1313
{
1414
/**
1515
* The input does not satisfy the constraints specified by an Amazon Web Services service.
16+
*
17+
* @var ValidationExceptionReason::*|null
1618
*/
1719
private $reason;
1820

src/Result/StartExecutionOutput.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ class StartExecutionOutput extends Result
99
{
1010
/**
1111
* The Amazon Resource Name (ARN) that identifies the execution.
12+
*
13+
* @var string
1214
*/
1315
private $executionArn;
1416

1517
/**
1618
* The date the execution is started.
19+
*
20+
* @var \DateTimeImmutable
1721
*/
1822
private $startDate;
1923

src/Result/StopExecutionOutput.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ class StopExecutionOutput extends Result
99
{
1010
/**
1111
* The date the execution is stopped.
12+
*
13+
* @var \DateTimeImmutable
1214
*/
1315
private $stopDate;
1416

0 commit comments

Comments
 (0)