Skip to content

Conversation

@DigitalTimK
Copy link
Contributor

This PR will:

@DigitalTimK DigitalTimK changed the title Enhancement/parameter constructors Improve parameter constructors May 4, 2024
@GhaziTriki GhaziTriki added the enhancement Improvement or addition to existing functionality label May 5, 2024
@GhaziTriki GhaziTriki added this to the 3.0.0 milestone May 5, 2024
[
'recordID' => $this->recordingId,
'publish' => !is_null($this->publish) ? ($this->publish ? 'true' : 'false') : $this->publish,
'publish' => $this->publish ? 'true' : 'false',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should be 'publish' => $this->publish ?? 'false' ? 'true' : 'false', which is similar to the previous implementation because the constructor is not preventing null value of a boolean

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To double check.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be good!

DigitalTimK and others added 3 commits May 7, 2024 22:41
# Conflicts:
#	src/Parameters/BaseParameters.php
#	src/Parameters/CreateMeetingParameters.php
#	src/Parameters/DeleteRecordingsParameters.php
#	src/Parameters/EndMeetingParameters.php
#	src/Parameters/GetMeetingInfoParameters.php
#	src/Parameters/GetRecordingTextTracksParameters.php
#	src/Parameters/InsertDocumentParameters.php
#	src/Parameters/IsMeetingRunningParameters.php
#	src/Parameters/JoinMeetingParameters.php
#	src/Parameters/MetaParameters.php
#	src/Parameters/PublishRecordingsParameters.php
#	src/Parameters/PutRecordingTextTrackParameters.php
#	src/Parameters/UpdateRecordingsParameters.php
#	src/Parameters/UserDataParameters.php
#	tests/BigBlueButtonTest.php
#	tests/Parameters/CreateMeetingParametersTest.php
@GhaziTriki
Copy link
Member

@DigitalTimK Thanks again !

@GhaziTriki GhaziTriki merged commit edc3b71 into bigbluebutton:develop Mar 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement Improvement or addition to existing functionality

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants