Skip to content

Commit

Permalink
refactor(Repository): rename DX methods (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi authored Jul 6, 2024
1 parent 5bf0992 commit b11d788
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* feat: `$offset` parameter type widening for `ArrayAccess` methods
* fix(`DefaultKeyTransformer`): only convert `Stringable` to string for now.
* feat: add `UuidKeyTransformer`
* refactor(`Repository`): rename DX methods

## 0.7.0

Expand Down
4 changes: 2 additions & 2 deletions packages/collections-orm/src/Trait/RepositoryDxTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ final protected function getDoctrineRepository(): ObjectRepository&Selectable
/**
* @return CriteriaRecollection<TKey,T>
*/
final protected function createCriteriaCollection(
final protected function createCriteriaRecollection(
Criteria $criteria,
?string $instanceId = null,
?string $indexBy = null,
Expand Down Expand Up @@ -107,7 +107,7 @@ final protected function createCriteriaPageable(
/**
* @return QueryRecollection<TKey,T>
*/
final protected function createQueryCollection(
final protected function createQueryRecollection(
QueryBuilder $queryBuilder,
?string $indexBy = null,
?CountStrategy $count = null,
Expand Down

0 comments on commit b11d788

Please sign in to comment.