mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user