Skip to content

Commit eddc882

Browse files
committed
Renamed GetsEntity to SelectsEntity
1 parent 9c8b3ce commit eddc882

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/EloquentRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
use Illuminate\Support\Arr;
1010
use Orkhanahmadov\EloquentRepository\Repository\{Concerns\CreatesEntity,
1111
Concerns\DeletesEntity,
12-
Concerns\GetsEntity,
12+
Concerns\SelectsEntity,
1313
Concerns\UpdatesEntity,
1414
Contracts\Repository,
1515
Criteria};
1616

1717
class EloquentRepository implements Repository
1818
{
19-
use GetsEntity;
19+
use SelectsEntity;
2020
use CreatesEntity;
2121
use UpdatesEntity;
2222
use DeletesEntity;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @method string cacheKey()
1616
* @method int cacheTTLValue()
1717
*/
18-
trait GetsEntity
18+
trait SelectsEntity
1919
{
2020
/**
2121
* Returns all models.

0 commit comments

Comments
 (0)