Files
wordpress/wp-admin
Sergey Biryukov d8dc8f547e Coding Standards: Use more meaningful variable names in Plugin Upgrader.
Per the [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#naming-conventions Naming Conventions]:

> Don’t abbreviate variable names unnecessarily; let the code be unambiguous and self-documenting.

This commit includes renaming of the following variables:
* `$r` to `$upgrade_data`.
* `$res` to `$connected`.
* `$pluginfiles` to `$plugin_files` — Per naming conventions, separate words via underscores.
* `$info` to `$new_plugin_data`.

Follow-up to [6779], [8550], [9141], [11005], [12157], [18618], [56525].

Props costdev, mukesh27.
See #63168.
Built from https://develop.svn.wordpress.org/trunk@60997


git-svn-id: http://core.svn.wordpress.org/trunk@60333 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2025-10-20 23:37:34 +00:00
..