File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed
Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ namespace CPMDB \Mods \Tags \Types ;
6+
7+ use CPMDB \Mods \Tags \Categories \GeneralTagInfo ;
8+
9+ class Gloves extends GeneralTagInfo
10+ {
11+ public const TAG_NAME = 'Gloves ' ;
12+
13+ protected function _getName (): string
14+ {
15+ return self ::TAG_NAME ;
16+ }
17+
18+ public function getLabel (): string
19+ {
20+ return 'Gloves ' ;
21+ }
22+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ namespace CPMDB \Mods \Tags \Types ;
6+
7+ use CPMDB \Mods \Tags \Categories \ItemSlotTag ;
8+
9+ class Neck extends ItemSlotTag
10+ {
11+ public const TAG_NAME = 'Neck ' ;
12+
13+ protected function _getName (): string
14+ {
15+ return self ::TAG_NAME ;
16+ }
17+
18+ public function getLabel (): string
19+ {
20+ return 'Neck ' ;
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments