Skip to content

Commit c9304aa

Browse files
authored
Set DTO classes Final (#467)
* Make DTO objects final * Regenerate code * Add entry in changelogs
1 parent 6acc461 commit c9304aa

File tree

64 files changed

+64
-64
lines changed

Some content is hidden

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

64 files changed

+64
-64
lines changed

src/Enum/AttributeAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class AttributeAction
5+
final class AttributeAction
66
{
77
public const ADD = 'ADD';
88
public const DELETE = 'DELETE';

src/Enum/BillingMode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class BillingMode
5+
final class BillingMode
66
{
77
public const PAY_PER_REQUEST = 'PAY_PER_REQUEST';
88
public const PROVISIONED = 'PROVISIONED';

src/Enum/ComparisonOperator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ComparisonOperator
5+
final class ComparisonOperator
66
{
77
public const BEGINS_WITH = 'BEGINS_WITH';
88
public const BETWEEN = 'BETWEEN';

src/Enum/ConditionalOperator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ConditionalOperator
5+
final class ConditionalOperator
66
{
77
public const AND = 'AND';
88
public const OR = 'OR';

src/Enum/IndexStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class IndexStatus
5+
final class IndexStatus
66
{
77
public const ACTIVE = 'ACTIVE';
88
public const CREATING = 'CREATING';

src/Enum/KeyType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class KeyType
5+
final class KeyType
66
{
77
public const HASH = 'HASH';
88
public const RANGE = 'RANGE';

src/Enum/ProjectionType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ProjectionType
5+
final class ProjectionType
66
{
77
public const ALL = 'ALL';
88
public const INCLUDE = 'INCLUDE';

src/Enum/ReplicaStatus.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ReplicaStatus
5+
final class ReplicaStatus
66
{
77
public const ACTIVE = 'ACTIVE';
88
public const CREATING = 'CREATING';

src/Enum/ReturnConsumedCapacity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ReturnConsumedCapacity
5+
final class ReturnConsumedCapacity
66
{
77
public const INDEXES = 'INDEXES';
88
public const NONE = 'NONE';

src/Enum/ReturnItemCollectionMetrics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AsyncAws\DynamoDb\Enum;
44

5-
class ReturnItemCollectionMetrics
5+
final class ReturnItemCollectionMetrics
66
{
77
public const NONE = 'NONE';
88
public const SIZE = 'SIZE';

0 commit comments

Comments
 (0)