Skip to content

Commit

Permalink
Update CS dependencies (#1688)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse committed Mar 19, 2024
1 parent e7f7068 commit 5614acd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Input/UploadPartCopyRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class UploadPartCopyRequest extends Input

/**
* Specifies the source object for the copy operation. You specify the value in one of two formats, depending on whether
* you want to access the source object through an access point [^1]:.
* you want to access the source object through an access point [^1]:
*
* - For objects not accessed through an access point, specify the name of the source bucket and key of the source
* object, separated by a slash (/). For example, to copy the object `reports/january.pdf` from the bucket
Expand Down
2 changes: 1 addition & 1 deletion src/S3Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ public function deleteBucketCors($input): Result
}

/**
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:.
* Removes an object from a bucket. The behavior depends on the bucket's versioning state:
*
* - If bucket versioning is not enabled, the operation permanently deletes the object.
* - If bucket versioning is enabled, the operation inserts a delete marker, which becomes the current version of the
Expand Down
2 changes: 1 addition & 1 deletion src/ValueObject/AwsObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ final class AwsObject
/**
* The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its
* 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
* was created and how it is encrypted as described below:.
* was created and how it is encrypted as described below:
*
* - Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management
* Console, and are encrypted by SSE-S3 or plaintext, have ETags that are an MD5 digest of their object data.
Expand Down
4 changes: 3 additions & 1 deletion src/ValueObject/EventBridgeConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

namespace AsyncAws\S3\ValueObject;

use AsyncAws\S3\ValueObject\EventBridgeConfiguration as EventBridgeConfiguration1;

/**
* A container for specifying the configuration for Amazon EventBridge.
*/
final class EventBridgeConfiguration
{
/**
* @param array|EventBridgeConfiguration $input
* @param array|EventBridgeConfiguration1 $input
*/
public static function create($input): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/ValueObject/Owner.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ final class Owner
{
/**
* Container for the display name of the owner. This value is only supported in the following Amazon Web Services
* Regions:.
* Regions:
*
* - US East (N. Virginia)
* - US West (N. California)
Expand Down
4 changes: 2 additions & 2 deletions src/ValueObject/RestoreStatus.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final class RestoreStatus
{
/**
* Specifies whether the object is currently being restored. If the object restoration is in progress, the header
* returns the value `TRUE`. For example:.
* returns the value `TRUE`. For example:
*
* `x-amz-optional-object-attributes: IsRestoreInProgress="true"`
*
Expand All @@ -32,7 +32,7 @@ final class RestoreStatus

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

0 comments on commit 5614acd

Please sign in to comment.