janboddez / share-on-mastodon

Easily share WordPress posts on Mastodon.
https://jan.boddez.net/wordpress/share-on-mastodon
GNU General Public License v3.0
39 stars 5 forks source link

ctype_digit(): Argument of type int will be interpreted as string in the future #96

Closed janboddez closed 9 months ago

janboddez commented 9 months ago

class-block-editor.php:111

janboddez commented 9 months ago

It would seem that WP_REST_Request::get_param() already converts "integer strings" to ints.

janboddez commented 9 months ago

Or rather, this is JSON, not a regular form input. That explains. It was an int all along.

So we can simply use is_int() and return early if it isn't, which should never happen.