Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | private function __construct( |
||
44 | Collection $contactMethods, |
||
45 | $name, |
||
46 | $email, |
||
47 | $summary, |
||
48 | UriInterface $self = null |
||
49 | ) |
||
50 | { |
||
|
|||
51 | $this->contactMethods = $contactMethods; |
||
52 | $this->name = $name; |
||
53 | $this->email = $email; |
||
54 | $this->summary = $summary; |
||
55 | $this->self = $self; |
||
56 | } |
||
57 | } |
||
58 |