PetsCollection
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 2
b 0
f 0
dl 0
loc 3
ccs 0
cts 0
cp 0
1
<?php
2
declare(strict_types=1);
3
4
namespace HeroesofAbenez\Combat;
5
6
/**
7
 * @author Jakub Konečný
8
 * @internal
9
 */
10
final class PetsCollection extends \Nexendrie\Utils\Collection
11
{
12
    protected string $class = Pet::class;
13
}
14