Passed
Push — master ( f76f45...88719b )
by Mattia
04:38
created

AccountStatsRepository::createEmptyStatsForUuid()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 8
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Repositories;
6
7
use App\Models\AccountStats;
8
9
class AccountStatsRepository
10
{
11
    public function model(): string
12
    {
13
        return AccountStats::class;
14
    }
15
}
16