Coding Standards: Use self when appropriate.

* `WP_List_Table::get_default_primary_column_name()` is a protected method, so calling it statically with the class name is bad practice.
* Similarly, this applies when calling a private constructor in `WP_Screen::get()`.

Props jrf.
See #50767.

git-svn-id: https://develop.svn.wordpress.org/trunk@49192 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-10-18 17:16:33 +00:00
parent f41b6b4d2e
commit f124a650ba
2 changed files with 2 additions and 2 deletions

View File

@ -1073,7 +1073,7 @@ class WP_List_Table {
// If the primary column doesn't exist,
// fall back to the first non-checkbox column.
if ( ! isset( $columns[ $default ] ) ) {
$default = WP_List_Table::get_default_primary_column_name();
$default = self::get_default_primary_column_name();
}
/**

View File

@ -377,7 +377,7 @@ final class WP_Screen {
return $screen;
}
} else {
$screen = new WP_Screen();
$screen = new self();
$screen->id = $id;
}