[Version 2.3.2](https://github.com/ringcentral/ringcentral-php/compare/2.3.1...2.3.2) added a use of [`str_starts_with`](https://www.php.net/manual/en/function.str-starts-with.php) via PR #113. https://github.com/ringcentral/ringcentral-php/blob/31355895e0118ac92bc7e8ce55d0ca38ee257ebb/src/Platform/Platform.php#L117 `str_starts_with` requires PHP 8, so the designation of this library as PHP 7.2 compatible is incorrect. https://github.com/ringcentral/ringcentral-php/blob/31355895e0118ac92bc7e8ce55d0ca38ee257ebb/composer.json#L16 Here is a [polyfill](https://php.watch/versions/8.0/str_starts_with-str_ends_with#:~:text=Polyfills,7.0%20and%20later.): ```PHP function str_starts_with(string $haystack, string $needle): bool { return \strncmp($haystack, $needle, \strlen($needle)) === 0; } ```