Skip to content

Commit 5614acd

Browse files
authored
Update CS dependencies (#1688)
1 parent e7f7068 commit 5614acd

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

src/Input/UploadPartCopyRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ final class UploadPartCopyRequest extends Input
4646

4747
/**
4848
* Specifies the source object for the copy operation. You specify the value in one of two formats, depending on whether
49-
* you want to access the source object through an access point [^1]:.
49+
* you want to access the source object through an access point [^1]:
5050
*
5151
* - For objects not accessed through an access point, specify the name of the source bucket and key of the source
5252
* object, separated by a slash (/). For example, to copy the object `reports/january.pdf` from the bucket

src/S3Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ public function deleteBucketCors($input): Result
922922
}
923923

924924
/**
925-
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:.
925+
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:
926926
*
927927
* - If bucket versioning is not enabled, the operation permanently deletes the object.
928928
* - If bucket versioning is enabled, the operation inserts a delete marker, which becomes the current version of the

src/ValueObject/AwsObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ final class AwsObject
2727
/**
2828
* The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its
2929
* metadata. The ETag may or may not be an MD5 digest of the object data. Whether or not it is depends on how the object
30-
* was created and how it is encrypted as described below:.
30+
* was created and how it is encrypted as described below:
3131
*
3232
* - Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management
3333
* Console, and are encrypted by SSE-S3 or plaintext, have ETags that are an MD5 digest of their object data.

src/ValueObject/EventBridgeConfiguration.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
namespace AsyncAws\S3\ValueObject;
44

5+
use AsyncAws\S3\ValueObject\EventBridgeConfiguration as EventBridgeConfiguration1;
6+
57
/**
68
* A container for specifying the configuration for Amazon EventBridge.
79
*/
810
final class EventBridgeConfiguration
911
{
1012
/**
11-
* @param array|EventBridgeConfiguration $input
13+
* @param array|EventBridgeConfiguration1 $input
1214
*/
1315
public static function create($input): self
1416
{

src/ValueObject/Owner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ final class Owner
99
{
1010
/**
1111
* Container for the display name of the owner. This value is only supported in the following Amazon Web Services
12-
* Regions:.
12+
* Regions:
1313
*
1414
* - US East (N. Virginia)
1515
* - US West (N. California)

src/ValueObject/RestoreStatus.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ final class RestoreStatus
1616
{
1717
/**
1818
* Specifies whether the object is currently being restored. If the object restoration is in progress, the header
19-
* returns the value `TRUE`. For example:.
19+
* returns the value `TRUE`. For example:
2020
*
2121
* `x-amz-optional-object-attributes: IsRestoreInProgress="true"`
2222
*
@@ -32,7 +32,7 @@ final class RestoreStatus
3232

3333
/**
3434
* Indicates when the restored copy will expire. This value is populated only if the object has already been restored.
35-
* For example:.
35+
* For example:
3636
*
3737
* `x-amz-optional-object-attributes: IsRestoreInProgress="false", RestoreExpiryDate="2012-12-21T00:00:00.000Z"`
3838
*

0 commit comments

Comments
 (0)