Environment details
- OS: ubuntu24
- PHP version: 8.2
- Package name and version:
Steps to reproduce
- Instantiate the contentDetails object.
- Call $contentDetails->setEnableEmbed(true);
- Observe that true is rejected.
- Call $contentDetails->setEnableEmbed(false);
- Observe that false is accepted without issues.
Code example
# $contentDetails = new LiveBroadcastContentDetails();
# $contentDetails->setEnableEmbed(true);
Expected Behavior
The method should accept both true and false as valid boolean inputs.
Actual Behavior
The method rejects true but allows false, indicating a possible bug.
Thanks!