Coding Standards: Remove redundant ignore annotations, take 5.

The `VariableAnalysis` standard is not used by WP Core.

Follow-up to [50958], [51003], [52049], [52051], [52069], [53072], [54132], [55132], [56363], [56738], [56743], [56751], [56752].

Props jrf.
See #59161.

git-svn-id: https://develop.svn.wordpress.org/trunk@56753 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2023-10-02 11:25:35 +00:00
parent 8bbeee43b6
commit f7d73158ac
8 changed files with 12 additions and 12 deletions

View File

@@ -5079,7 +5079,7 @@ function _wp_array_set( &$input_array, $path, $value = null ) {
) {
$input_array[ $path_element ] = array();
}
$input_array = &$input_array[ $path_element ]; // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.VariableRedeclaration
$input_array = &$input_array[ $path_element ];
}
$input_array[ $path[ $i ] ] = $value;