1 | <?php |
||
5 | class StatMapping |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | public $statName; |
||
11 | |||
12 | /** |
||
13 | * @var null|string |
||
14 | */ |
||
15 | public $champion; |
||
16 | |||
17 | /** |
||
18 | * @var null|string |
||
19 | */ |
||
20 | public $map; |
||
21 | |||
22 | 3 | public function __construct(string $name, ?string $champion, ?string $map) |
|
28 | |||
29 | 3 | public static function createFromArray(array $statData): self |
|
37 | |||
38 | 2 | public function isChampionStat(): bool |
|
42 | |||
43 | 1 | public function isMapStat(): bool |
|
47 | } |
||
48 |