Skip to content

Commit 5476763

Browse files
authored
Generate the property type for generated objects (#1467)
1 parent 120030c commit 5476763

File tree

57 files changed

+304
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+304
-0
lines changed

src/Exception/CodeStorageExceededException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ final class CodeStorageExceededException extends ClientException
1515
{
1616
/**
1717
* The exception type.
18+
*
19+
* @var string|null
1820
*/
1921
private $type;
2022

src/Exception/EC2AccessDeniedException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EC2AccessDeniedException extends ServerException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/EC2ThrottledException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EC2ThrottledException extends ServerException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/EC2UnexpectedException.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
*/
1111
final class EC2UnexpectedException extends ServerException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

18+
/**
19+
* @var string|null
20+
*/
1521
private $ec2ErrorCode;
1622

1723
public function getEc2ErrorCode(): ?string

src/Exception/EFSIOException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EFSIOException extends ClientException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/EFSMountConnectivityException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EFSMountConnectivityException extends ClientException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/EFSMountFailureException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EFSMountFailureException extends ClientException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/EFSMountTimeoutException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
*/
1111
final class EFSMountTimeoutException extends ClientException
1212
{
13+
/**
14+
* @var string|null
15+
*/
1316
private $type;
1417

1518
public function getType(): ?string

src/Exception/ENILimitReachedException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414
final class ENILimitReachedException extends ServerException
1515
{
16+
/**
17+
* @var string|null
18+
*/
1619
private $type;
1720

1821
public function getType(): ?string

src/Exception/InvalidParameterValueException.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ final class InvalidParameterValueException extends ClientException
1212
{
1313
/**
1414
* The exception type.
15+
*
16+
* @var string|null
1517
*/
1618
private $type;
1719

0 commit comments

Comments
 (0)