to upgrade extention to php 8.3+ we have to slightly change /extension/twilio/vendor/twilio-php-master/Services/Twilio/Resource.php rows 92-99
from
public static function camelize($word) {
$callback = @create_function('$matches', 'return strtoupper("$matches[2]");');
return preg_replace_callback('/(^|_)([a-z])/',
$callback,
$word);
}
to
public static function camelize($word) {
$callback = @function ($matches) {return strtoupper("$matches[2]");};
return preg_replace_callback('/(^|_)([a-z])/',
$callback,
$word);
}
to upgrade extention to php 8.3+ we have to slightly change /extension/twilio/vendor/twilio-php-master/Services/Twilio/Resource.php rows 92-99
from
to