Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
45 | public function __construct( |
||
46 | $name, |
||
47 | $realm, |
||
48 | $battlegroup, |
||
49 | $members, |
||
50 | EmblemValueObject $emblemValueObject |
||
51 | ) { |
||
52 | $this->name = $name; |
||
53 | $this->realm = $realm; |
||
54 | $this->battlegroup = $battlegroup; |
||
55 | $this->members = $members; |
||
56 | $this->emblemValueObject = $emblemValueObject; |
||
57 | } |
||
58 | |||
99 |