muxinc / mux-php

Official Mux API wrapper for PHP projects, supporting both Mux Data and Mux Video.
MIT License
40 stars 30 forks source link

Possible typo in constant name: PlaybackPolicy::_PUBLIC #42

Closed denismosolov closed 3 years ago

denismosolov commented 3 years ago

I wonder if PlaybackPolicy::_PUBLIC should be PlaybackPolicy::PUBLIC, similar to PlaybackPolicy::SIGNED.

philcluff commented 3 years ago

Hey @denismosolov, this is deliberate, public is a reserved word, and is case insensitive, so we can't use just PUBLIC for this.

Thanks.