Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.



git-svn-id: https://develop.svn.wordpress.org/trunk@45590 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast
2019-07-02 23:41:16 +00:00
parent a00c69458b
commit 4503f93961
76 changed files with 1038 additions and 587 deletions
@@ -400,8 +400,9 @@ class WP_Text_Diff_Renderer_Table extends Text_Diff_Renderer {
ksort( $final_matches );
// Stores rows and blanks for each column.
$orig_rows = $orig_rows_copy = array_keys( $orig_matches );
$final_rows = array_keys( $final_matches );
$orig_rows = array_keys( $orig_matches );
$orig_rows_copy = $orig_rows;
$final_rows = array_keys( $final_matches );
// Interleaves rows with blanks to keep matches aligned.
// We may end up with some extraneous blank rows, but we'll just ignore them later.