mirror of
git://develop.git.wordpress.org/
synced 2025-02-13 03:04:42 +01:00
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:
parent
f41b6b4d2e
commit
f124a650ba
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -377,7 +377,7 @@ final class WP_Screen {
|
||||
return $screen;
|
||||
}
|
||||
} else {
|
||||
$screen = new WP_Screen();
|
||||
$screen = new self();
|
||||
$screen->id = $id;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user