Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [[*next-version*]] - YYYY-MM-DD
### Changed
- Aligned param names with those of PSR interfaces (#37).

## [0.5.0-beta1] - 2026-03-23
### Changed
Expand Down
4 changes: 2 additions & 2 deletions src/HasCapableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface HasCapableInterface
/**
* Determines whether this instance has the specified key.
*
* @param string $key The key to check for.
* @param string $id The key to check for.
*
* @return bool True if the key exists; false otherwise.
*
Expand All @@ -23,5 +23,5 @@ interface HasCapableInterface
* @psalm-suppress PossiblyUnusedMethod
* @psalm-suppress InvalidThrow
*/
public function has(string $key): bool;
public function has(string $id): bool;
}
Loading