| Total Complexity | 4 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class AccountStatsRepository extends BaseRepository |
||
| 14 | { |
||
| 15 | public function model(): string |
||
| 16 | { |
||
| 17 | return AccountStats::class; |
||
|
|
|||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Find account using UUID |
||
| 22 | * |
||
| 23 | * @param string $uuid User UUID |
||
| 24 | * @param array $columns Which columns should be loaded |
||
| 25 | * @return \App\Models\AccountStats Statistics related to given UUID |
||
| 26 | */ |
||
| 27 | public function findByUuid(string $uuid, $columns = ['*']): AccountStats |
||
| 28 | { |
||
| 29 | return $this->findBy('uuid', $uuid, $columns); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Increment request counter. |
||
| 34 | * @param string $uuid User UUID |
||
| 35 | */ |
||
| 36 | public function incrementRequestCounter(string $uuid = ''): void |
||
| 43 | ]); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Increment search counter. |
||
| 48 | * @param string $uuid User UUID |
||
| 49 | */ |
||
| 50 | public function incrementSearchCounter(string $uuid = ''): void |
||
| 60 |
In the issue above, the returned value is violating the contract defined by the mentioned interface.
Let's take a look at an example: