Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve get method phpdoc in EntityProviderInterface #474

Merged
merged 1 commit into from
Mar 29, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/Service/EntityProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ interface EntityProviderInterface
/**
* Get/load entity by unique key/value pair.
*
* @template TEntity
* @template TEntity of object
*
* @param class-string<TEntity>|string $role Entity role or class name.
* @param array $scope KV pair to locate the model, currently only support one pair.
*
* @psalm-return ($role is class-string ? TEntity : object)|null
* @return ($role is class-string<TEntity> ? TEntity|null : object|null)
*/
public function get(string $role, array $scope, bool $load = true): ?object;
}
Loading