Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function __construct( |
||
37 | ?HourlyRateDto $hourlyRate, |
||
38 | string $id, |
||
39 | string $imageUrl, |
||
40 | array $memberships, |
||
41 | string $name, |
||
42 | WorkspaceSettingsDto $workspaceSettings |
||
43 | ) { |
||
44 | $this->hourlyRate = $hourlyRate; |
||
45 | $this->id = $id; |
||
46 | $this->imageUrl = $imageUrl; |
||
47 | $this->memberships = $memberships; |
||
48 | $this->name = $name; |
||
49 | $this->workspaceSettings = $workspaceSettings; |
||
50 | } |
||
85 |