Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | 8 | public function toArray() |
|
34 | { |
||
35 | return [ |
||
36 | 8 | 'title' => $this->title, |
|
37 | 8 | 'presenter_email' => $this->presenterEmail, |
|
38 | 8 | 'attendee_limit' => $this->attendeeLimit, |
|
39 | 8 | 'presenter_default_controls' => $this->presenterDefaultControls, |
|
40 | 8 | 'attendee_default_controls' => $this->attendeeDefaultControls, |
|
41 | 8 | 'create_recording' => $this->createRecording, |
|
42 | 8 | 'language_culture_name' => $this->languageCultureName, |
|
43 | 8 | 'return_url' => $this->returnUrl, |
|
44 | 8 | 'status_ping_url' => $this->statusPingUrl, |
|
45 | 8 | ]; |
|
46 | } |
||
47 | } |
||
48 |