Skip to content

Commit fb4eeb4

Browse files
authored
Prevent aliasing self class in use statements (#1830)
1 parent d511e06 commit fb4eeb4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Changed
1111

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

1415
## 2.6.0

src/ValueObject/EventBridgeConfiguration.php

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

33
namespace AsyncAws\S3\ValueObject;
44

5-
use AsyncAws\S3\ValueObject\EventBridgeConfiguration as EventBridgeConfiguration1;
6-
75
/**
86
* A container for specifying the configuration for Amazon EventBridge.
97
*/
108
final class EventBridgeConfiguration
119
{
1210
/**
13-
* @param array|EventBridgeConfiguration1 $input
11+
* @param array|EventBridgeConfiguration $input
1412
*/
1513
public static function create($input): self
1614
{

0 commit comments

Comments
 (0)