Skip to content

Commit 582402d

Browse files
committed
Run
Fixed 0 of 87 files in 0.010 seconds, 16.000 MB memory used only
1 parent 1434c04 commit 582402d

37 files changed

+29
-310
lines changed

phpunit.xml.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@
1818
</testsuite>
1919
</testsuites>
2020
</phpunit>
21+

src/Enum/MeetingLayout.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020

2121
namespace BigBlueButton\Enum;
2222

23-
class MeetingLayout extends \MabeEnum\Enum
23+
use MabeEnum\Enum;
24+
25+
class MeetingLayout extends Enum
2426
{
2527
public const CUSTOM_LAYOUT = 'CUSTOM_LAYOUT';
2628
public const SMART_LAYOUT = 'SMART_LAYOUT';

src/Exceptions/BadResponseException.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,4 @@
2020

2121
namespace BigBlueButton\Exceptions;
2222

23-
class BadResponseException extends \Exception
24-
{
25-
}
23+
class BadResponseException extends \Exception {}

src/Parameters/BaseParameters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ abstract public function getHTTPQuery();
3737
*/
3838
protected function buildHTTPQuery($array)
3939
{
40-
return str_replace(array('%20', '!', "'", "(", ")", '*'), array('+', '%21', "%27", "%28", "%29", '%2A'), http_build_query(array_filter($array), '', '&', \PHP_QUERY_RFC3986));
40+
return str_replace(['%20', '!', "'", '(', ')', '*'], ['+', '%21', '%27', '%28', '%29', '%2A'], http_build_query(array_filter($array), '', '&', \PHP_QUERY_RFC3986));
4141
}
4242
}

src/Parameters/CreateMeetingParameters.php

Lines changed: 0 additions & 169 deletions
Original file line numberDiff line numberDiff line change
@@ -27,289 +27,129 @@ class CreateMeetingParameters extends MetaParameters
2727
{
2828
use DocumentableTrait;
2929

30-
/**
31-
* @var string
32-
*/
3330
private ?string $meetingId = null;
3431

35-
/**
36-
* @var string
37-
*/
3832
private ?string $meetingName = null;
3933

4034
/**
41-
* @var string
42-
*
4335
* @deprecated
4436
*/
4537
private ?string $attendeePassword = null;
4638

4739
/**
48-
* @var string
49-
*
5040
* @deprecated
5141
*/
5242
private ?string $moderatorPassword = null;
5343

54-
/**
55-
* @var string
56-
*/
5744
private ?string $dialNumber = null;
5845

59-
/**
60-
* @var int
61-
*/
6246
private ?int $voiceBridge = null;
6347

64-
/**
65-
* @var string
66-
*/
6748
private ?string $webVoice = null;
6849

69-
/**
70-
* @var string
71-
*/
7250
private ?string $logoutUrl = null;
7351

74-
/**
75-
* @var int
76-
*/
7752
private ?int $maxParticipants = null;
7853

79-
/**
80-
* @var bool
81-
*/
8254
private ?bool $record = null;
8355

84-
/**
85-
* @var bool
86-
*/
8756
private ?bool $autoStartRecording = null;
8857

89-
/**
90-
* @var bool
91-
*/
9258
private ?bool $allowStartStopRecording = null;
9359

94-
/**
95-
* @var int
96-
*/
9760
private ?int $duration = null;
9861

99-
/**
100-
* @var string
101-
*/
10262
private ?string $welcomeMessage = null;
10363

104-
/**
105-
* @var string
106-
*/
10764
private ?string $moderatorOnlyMessage = null;
10865

109-
/**
110-
* @var bool
111-
*/
11266
private ?bool $webcamsOnlyForModerator = null;
11367

114-
/**
115-
* @var string
116-
*/
11768
private ?string $logo = null;
11869

119-
/**
120-
* @var string
121-
*/
12270
private ?string $copyright = null;
12371

124-
/**
125-
* @var bool
126-
*/
12772
private ?bool $muteOnStart = null;
12873

129-
/**
130-
* @var bool
131-
*/
13274
private ?bool $lockSettingsDisableCam = null;
13375

134-
/**
135-
* @var bool
136-
*/
13776
private ?bool $lockSettingsDisableMic = null;
13877

139-
/**
140-
* @var bool
141-
*/
14278
private ?bool $lockSettingsDisablePrivateChat = null;
14379

144-
/**
145-
* @var bool
146-
*/
14780
private ?bool $lockSettingsDisablePublicChat = null;
14881

149-
/**
150-
* @var bool
151-
*/
15282
private ?bool $lockSettingsDisableNote = null;
15383

154-
/**
155-
* @var bool
156-
*/
15784
private ?bool $lockSettingsHideUserList = null;
15885

159-
/**
160-
* @var bool
161-
*/
16286
private ?bool $lockSettingsLockedLayout = null;
16387

164-
/**
165-
* @var bool
166-
*/
16788
private ?bool $lockSettingsLockOnJoin = null;
16889

169-
/**
170-
* @var bool
171-
*/
17290
private ?bool $lockSettingsLockOnJoinConfigurable = null;
17391

174-
/**
175-
* @var bool
176-
*/
17792
private ?bool $lockSettingsHideViewersCursor = null;
17893

179-
/**
180-
* @var bool
181-
*/
18294
private ?bool $allowModsToUnmuteUsers = null;
18395

184-
/**
185-
* @var bool
186-
*/
18796
private ?bool $allowModsToEjectCameras = null;
18897

189-
/**
190-
* @var bool
191-
*/
19298
private ?bool $allowRequestsWithoutSession = null;
19399

194-
/**
195-
* @var bool
196-
*/
197100
private ?bool $isBreakout = null;
198101

199-
/**
200-
* @var string
201-
*/
202102
private ?string $parentMeetingId = null;
203103

204-
/**
205-
* @var int
206-
*/
207104
private ?int $sequence = null;
208105

209-
/**
210-
* @var bool
211-
*/
212106
private ?bool $freeJoin = null;
213107

214-
/**
215-
* @var string
216-
*/
217108
private ?string $guestPolicy = null;
218109

219-
/**
220-
* @var string
221-
*/
222110
private ?string $bannerText = null;
223111

224-
/**
225-
* @var string
226-
*/
227112
private ?string $bannerColor = null;
228113

229114
/**
230115
* @deprecated
231-
*
232-
* @var bool
233116
*/
234117
private ?bool $learningDashboardEnabled = null;
235118

236119
/**
237120
* @deprecated
238-
*
239-
* @var bool
240121
*/
241122
private ?bool $virtualBackgroundsDisabled = null;
242123

243-
/**
244-
* @var int
245-
*/
246124
private ?int $learningDashboardCleanupDelayInMinutes = null;
247125

248-
/**
249-
* @var int
250-
*/
251126
private ?int $endWhenNoModeratorDelayInMinutes = null;
252127

253-
/**
254-
* @var bool
255-
*/
256128
private ?bool $endWhenNoModerator = null;
257129

258-
/**
259-
* @var bool
260-
*/
261130
private ?bool $meetingKeepEvents = null;
262131

263132
/**
264133
* @deprecated
265-
*
266-
* @var bool
267134
*/
268135
private ?bool $breakoutRoomsEnabled = null;
269136

270-
/**
271-
* @var bool
272-
*/
273137
private ?bool $breakoutRoomsRecord = null;
274138

275-
/**
276-
* @var bool
277-
*/
278139
private ?bool $breakoutRoomsPrivateChatEnabled = null;
279140

280-
/**
281-
* @var string
282-
*/
283141
private ?string $meetingEndedURL = null;
284142

285-
/**
286-
* @var string
287-
*/
288143
private ?string $meetingLayout = null;
289144

290-
/**
291-
* @var int
292-
*/
293145
private ?int $userCameraCap = null;
294146

295-
/**
296-
* @var int
297-
*/
298147
private ?int $meetingCameraCap = null;
299148

300-
/**
301-
* @var int
302-
*/
303149
private ?int $meetingExpireIfNoUserJoinedInMinutes = null;
304150

305-
/**
306-
* @var int
307-
*/
308151
private ?int $meetingExpireWhenLastUserLeftInMinutes = null;
309152

310-
/**
311-
* @var bool
312-
*/
313153
private ?bool $preUploadedPresentationOverrideDefault = null;
314154

315155
/**
@@ -322,19 +162,10 @@ class CreateMeetingParameters extends MetaParameters
322162
*/
323163
private $breakoutRoomsGroups = [];
324164

325-
/**
326-
* @var bool
327-
*/
328165
private ?bool $notifyRecordingIsOn = null;
329166

330-
/**
331-
* @var string
332-
*/
333167
private ?string $presentationUploadExternalUrl = null;
334168

335-
/**
336-
* @var string
337-
*/
338169
private ?string $presentationUploadExternalDescription = null;
339170

340171
/**

src/Parameters/DeleteRecordingsParameters.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
class DeleteRecordingsParameters extends BaseParameters
2727
{
28-
/**
29-
* @var string
30-
*/
3128
private ?string $recordingId = null;
3229

3330
/**

src/Parameters/EndMeetingParameters.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,10 @@
2525
*/
2626
class EndMeetingParameters extends BaseParameters
2727
{
28-
/**
29-
* @var string
30-
*/
3128
private ?string $meetingId = null;
3229

3330
/**
3431
* @deprecated
35-
*
36-
* @var string
3732
*/
3833
private ?string $password = null;
3934

src/Parameters/GetMeetingInfoParameters.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,10 @@
2525
*/
2626
class GetMeetingInfoParameters extends BaseParameters
2727
{
28-
/**
29-
* @var string
30-
*/
3128
private ?string $meetingId = null;
3229

33-
/**
34-
* @var int
35-
*/
3630
private ?int $offset = null;
3731

38-
/**
39-
* @var int
40-
*/
4132
private ?int $limit = null;
4233

4334
/**

src/Parameters/GetRecordingTextTracksParameters.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
*/
2626
class GetRecordingTextTracksParameters extends MetaParameters
2727
{
28-
/**
29-
* @var string
30-
*/
3128
private ?string $recordId = null;
3229

3330
/**

0 commit comments

Comments
 (0)