Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
46 | 5 | public function __construct( |
|
47 | Ambassador $ambassador, |
||
48 | User $user, |
||
49 | string $shortDescription = '', |
||
50 | string $description = null |
||
51 | ) { |
||
52 | 5 | $this->user = $user; |
|
53 | 5 | $this->ambassador = $ambassador; |
|
54 | 5 | $this->shortDescription = $shortDescription; |
|
55 | 5 | $this->description = $description; |
|
56 | 5 | } |
|
57 | |||
68 |