Skip to content

Commit

Permalink
Prevent aliasing self class in use statements (#1830)
Browse files Browse the repository at this point in the history
  • Loading branch information
jderusse authored Jan 13, 2025
1 parent d511e06 commit fb4eeb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

### Changed

- Avoid usage of `alias` when use statement refers to self
- AWS enhancement: Documentation updates.

## 2.6.0
Expand Down
4 changes: 1 addition & 3 deletions src/ValueObject/EventBridgeConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@

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|EventBridgeConfiguration1 $input
* @param array|EventBridgeConfiguration $input
*/
public static function create($input): self
{
Expand Down

0 comments on commit fb4eeb4

Please sign in to comment.