OSDN Git Service

remove @subpackage commands/internals
authorscribu <mail@scribu.net>
Tue, 1 Jan 2013 20:35:58 +0000 (22:35 +0200)
committerscribu <mail@scribu.net>
Tue, 1 Jan 2013 20:35:58 +0000 (22:35 +0200)
14 files changed:
php/commands/blog.php
php/commands/cache.php
php/commands/cap.php
php/commands/comment.php
php/commands/core.php
php/commands/db.php
php/commands/option.php
php/commands/plugin.php
php/commands/post-meta.php
php/commands/post.php
php/commands/theme.php
php/commands/transient.php
php/commands/user-meta.php
php/commands/user.php

index 7e32914..52b8685 100644 (file)
@@ -4,7 +4,6 @@
  * Manage blogs in a multisite install.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Blog_Command extends WP_CLI_Command {
 
index 3142295..00b93b2 100644 (file)
@@ -4,7 +4,6 @@
  * Manage the object cache.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Cache_Command extends WP_CLI_Command {
 
index 29fe264..aea5a2f 100644 (file)
@@ -4,7 +4,6 @@
  * Manage user capabilities.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Capabilities_Command extends WP_CLI_Command {
 
index 2db3c0a..dd5442c 100644 (file)
@@ -4,7 +4,6 @@
  * Manage comments.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Comment_Command extends WP_CLI_Command {
 
index 86daef2..f3d70f4 100644 (file)
@@ -4,7 +4,6 @@
  * Download, install, update and otherwise manage WordPress proper.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Core_Command extends WP_CLI_Command {
 
index 2d204d4..1045167 100644 (file)
@@ -4,7 +4,6 @@
  * Perform basic database operations.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class DB_Command extends WP_CLI_Command {
 
index b5f63da..525a89a 100644 (file)
@@ -4,7 +4,6 @@
  * Manage WordPress options.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Option_Command extends WP_CLI_Command {
 
index b133665..189dad3 100644 (file)
@@ -4,7 +4,6 @@
  * Manage plugins.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Plugin_Command extends \WP_CLI\CommandWithUpgrade {
 
index a987ac4..08a1052 100644 (file)
@@ -4,7 +4,6 @@
  * Manage post custom fields.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Post_Meta_Command extends \WP_CLI\CommandWithMeta {
        protected $meta_type = 'post';
index e0a082e..1e69d24 100644 (file)
@@ -4,7 +4,6 @@
  * Manage posts.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Post_Command extends \WP_CLI\CommandWithDBObject {
 
index ca016dd..2367658 100644 (file)
@@ -4,7 +4,6 @@
  * Manage themes.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Theme_Command extends \WP_CLI\CommandWithUpgrade {
 
index 8c2ee6a..c7dae59 100644 (file)
@@ -4,7 +4,6 @@
  * Manage WordPress transients.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class Transient_Command extends WP_CLI_Command {
 
index 6fe4ed7..59b4b73 100644 (file)
@@ -4,7 +4,6 @@
  * Manage user custom fields.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class User_Meta_Command extends \WP_CLI\CommandWithMeta {
        protected $meta_type = 'user';
index fe878a6..c3cff0c 100644 (file)
@@ -4,7 +4,6 @@
  * Manage users.
  *
  * @package wp-cli
- * @subpackage commands/internals
  */
 class User_Command extends \WP_CLI\CommandWithDBObject {