| Total Complexity | 4 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class AccountRepository extends BaseRepository |
||
| 14 | { |
||
| 15 | public function model(): string |
||
| 16 | { |
||
| 17 | return Account::class; |
||
|
|
|||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Find account using UUID |
||
| 22 | * |
||
| 23 | * @param string $uuid |
||
| 24 | * @param array $columns |
||
| 25 | * @return Account |
||
| 26 | */ |
||
| 27 | public function findByUuid(string $uuid, $columns = ['*']): Account |
||
| 28 | { |
||
| 29 | return $this->findBy('uuid', $uuid, $columns); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $uuid |
||
| 34 | * @param array $columns |
||
| 35 | * @return Account |
||
| 36 | */ |
||
| 37 | public function findByUsername(string $uuid, $columns = ['*']): Account |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Last updated username. |
||
| 44 | * |
||
| 45 | * @param string $uuid |
||
| 46 | * @param array $columns |
||
| 47 | * |
||
| 48 | * @return \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Eloquent\Model|object|null |
||
| 49 | */ |
||
| 50 | public function findLastUpdatedByUsername(string $uuid, $columns = ['*']) |
||
| 57 | } |
||
| 58 | } |
||
| 59 |
In the issue above, the returned value is violating the contract defined by the mentioned interface.
Let's take a look at an example: