You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do not know where the sources are generated from, but propably it is not just this single method with the wrong type specified when it does expect enum. This could be fixed either by changing the PlaybackPolicy to enum or updating the type to a working one.
The text was updated successfully, but these errors were encountered:
The method
MuxPhp\Models\CreateAssetRequest::setPlaybackPolicy
probably has an incorrect type of the playback_policy parameter in docblock:/** @param \MuxPhp\Models\PlaybackPolicy[]|null $playback_policy */
Should be either
/** @param string[]|null $playback_policy */
or any other alternative:
/** @param array<int, \MuxPhp\Models\PlaybackPolicy::*>|null $playback_policy */
I do not know where the sources are generated from, but propably it is not just this single method with the wrong type specified when it does expect enum. This could be fixed either by changing the PlaybackPolicy to enum or updating the type to a working one.
The text was updated successfully, but these errors were encountered: