Skip to content

Commit 815886f

Browse files
westonruterclaude
andcommitted
Add explicit return null to column_status(), wp_dashboard_quota(), and uninstall_plugin()
Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent bfa4909 commit 815886f

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

src/wp-admin/includes/class-wp-privacy-requests-table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -465,6 +465,7 @@ public function column_status( $item ) {
465465
}
466466

467467
echo '</span>';
468+
return null;
468469
}
469470

470471
/**

src/wp-admin/includes/dashboard.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1709,6 +1709,7 @@ function wp_dashboard_quota() {
17091709
</ul>
17101710
</div>
17111711
<?php
1712+
return null;
17121713
}
17131714

17141715
/**

src/wp-admin/includes/plugin.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,6 +1350,7 @@ function uninstall_plugin( $plugin ) {
13501350
*/
13511351
do_action( "uninstall_{$file}" );
13521352
}
1353+
return null;
13531354
}
13541355

13551356
//

0 commit comments

Comments
 (0)