Skip to content

Commit 5704f7d

Browse files
committed
Rename EloquentRepository Repository/Contract to Model Repository/Contract
1 parent 04b9485 commit 5704f7d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Contracts/EloquentRepository.php renamed to src/Contracts/Model.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace PPSpaces\Contracts;
44

5-
interface EloquentRepository
5+
interface Model
66
{
77

88
/**

src/Repositories/EloquentRepository.php renamed to src/Repositories/Model.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace PPSpaces\Repositories;
44

5-
use PPSpaces\Contracts\EloquentRepository as RepositoryInterface;
5+
use PPSpaces\Contracts\Model as RepositoryContract;
66

7-
abstract class EloquentRepository implements RepositoryInterface {
7+
abstract class Model implements RepositoryContract {
88

99
/**
1010
* The model instance.

0 commit comments

Comments
 (0)