From: scribu Date: Mon, 20 Jan 2014 23:05:57 +0000 (+0200) Subject: more renaming from _list() to list_() X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=515d33f0a5ecd47aef1148860b5b3b68cc71080b;p=wvm%2Fwvm.git more renaming from _list() to list_() --- diff --git a/php/commands/plugin.php b/php/commands/plugin.php index 18465c57..2b6ebef5 100644 --- a/php/commands/plugin.php +++ b/php/commands/plugin.php @@ -495,7 +495,7 @@ class Plugin_Command extends \WP_CLI\CommandWithUpgrade { * * @subcommand list */ - function _list( $_, $assoc_args ) { + public function list_( $_, $assoc_args ) { parent::_list( $_, $assoc_args ); } diff --git a/php/commands/site.php b/php/commands/site.php index cbd5ef2d..5d5637d2 100644 --- a/php/commands/site.php +++ b/php/commands/site.php @@ -352,7 +352,7 @@ class Site_Command extends \WP_CLI\CommandWithDBObject { * * @subcommand list */ - function _list( $_, $assoc_args ) { + public function list_( $_, $assoc_args ) { if ( !is_multisite() ) { WP_CLI::error( 'This is not a multisite install.' ); } diff --git a/php/commands/theme.php b/php/commands/theme.php index 4c8cddf6..45df5cab 100644 --- a/php/commands/theme.php +++ b/php/commands/theme.php @@ -513,7 +513,7 @@ class Theme_Command extends \WP_CLI\CommandWithUpgrade { * * @subcommand list */ - function _list( $_, $assoc_args ) { + public function list_( $_, $assoc_args ) { parent::_list( $_, $assoc_args ); } }