@@ -28,14 +28,14 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * @var string |
| 30 | 30 | */ |
| 31 | - private ?string $recordingId =null; |
|
| 31 | + private ?string $recordingId = null; |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * DeleteRecordingsParameters constructor. |
| 35 | 35 | * |
| 36 | 36 | * @param mixed $recordingId |
| 37 | 37 | */ |
| 38 | - public function __construct($recordingId=null) |
|
| 38 | + public function __construct($recordingId = null) |
|
| 39 | 39 | { |
| 40 | 40 | $this->recordingId = $recordingId; |
| 41 | 41 | } |
@@ -28,14 +28,14 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * @var string |
| 30 | 30 | */ |
| 31 | - private ?string $recordId =null; |
|
| 31 | + private ?string $recordId = null; |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * GetRecordingTextTracksParameters constructor. |
| 35 | 35 | * |
| 36 | 36 | * @param mixed $recordId |
| 37 | 37 | */ |
| 38 | - public function __construct($recordId=null) |
|
| 38 | + public function __construct($recordId = null) |
|
| 39 | 39 | { |
| 40 | 40 | $this->recordId = $recordId; |
| 41 | 41 | } |
@@ -25,14 +25,14 @@ |
||
| 25 | 25 | /** |
| 26 | 26 | * @var string |
| 27 | 27 | */ |
| 28 | - private ?string $hookId=null; |
|
| 28 | + private ?string $hookId = null; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * HooksDestroyParameters constructor. |
| 32 | 32 | * |
| 33 | 33 | * @param mixed $hookId |
| 34 | 34 | */ |
| 35 | - public function __construct($hookId=null) |
|
| 35 | + public function __construct($hookId = null) |
|
| 36 | 36 | { |
| 37 | 37 | $this->hookId = $hookId; |
| 38 | 38 | } |
@@ -28,25 +28,25 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * @var string |
| 30 | 30 | */ |
| 31 | - private ?string $meetingId =null; |
|
| 31 | + private ?string $meetingId = null; |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * @var int |
| 35 | 35 | */ |
| 36 | 36 | |
| 37 | - private ?int $offset = null ; |
|
| 37 | + private ?int $offset = null; |
|
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | 40 | * @var int |
| 41 | 41 | */ |
| 42 | - private ?int $limit =null; |
|
| 42 | + private ?int $limit = null; |
|
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | 45 | * GetMeetingInfoParameters constructor. |
| 46 | 46 | * |
| 47 | 47 | * @param mixed $meetingId |
| 48 | 48 | */ |
| 49 | - public function __construct($meetingId=null) |
|
| 49 | + public function __construct($meetingId = null) |
|
| 50 | 50 | { |
| 51 | 51 | $this->meetingId = $meetingId; |
| 52 | 52 | } |
@@ -58,9 +58,9 @@ |
||
| 58 | 58 | if (0 !== count($this->userData)) { |
| 59 | 59 | foreach ($this->userData as $k => $v) { |
| 60 | 60 | if (!is_bool($v)) { |
| 61 | - $queries['userdata-' . $k] = $v; |
|
| 61 | + $queries['userdata-'.$k] = $v; |
|
| 62 | 62 | } else { |
| 63 | - $queries['userdata-' . $k] = !is_null( $v)?($v ? 'true' : 'false'): $v; |
|
| 63 | + $queries['userdata-'.$k] = !is_null($v) ? ($v ? 'true' : 'false') : $v; |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -28,14 +28,14 @@ |
||
| 28 | 28 | /** |
| 29 | 29 | * @var string |
| 30 | 30 | */ |
| 31 | - private ?string $meetingId =null; |
|
| 31 | + private ?string $meetingId = null; |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * IsMeetingRunningParameters constructor. |
| 35 | 35 | * |
| 36 | 36 | * @param mixed $meetingId |
| 37 | 37 | */ |
| 38 | - public function __construct($meetingId=null) |
|
| 38 | + public function __construct($meetingId = null) |
|
| 39 | 39 | { |
| 40 | 40 | $this->meetingId = $meetingId; |
| 41 | 41 | } |