diff options
author | Andrew Nacin <nacin@git.wordpress.org> | 2010-10-30 14:09:05 +0000 |
---|---|---|
committer | Andrew Nacin <nacin@git.wordpress.org> | 2010-10-30 14:09:05 +0000 |
commit | 88fa2b340c1a3bb9a8ab8c5186572f70fda2adbf (patch) | |
tree | 8bb0c7e721389fbccd350e68b48ed43baf58d14a /wp-includes | |
parent | f9c7ac66ec71ed1154cd144b599313bd5980e55f (diff) | |
download | wordpress-88fa2b340c1a3bb9a8ab8c5186572f70fda2adbf.tar.gz wordpress-88fa2b340c1a3bb9a8ab8c5186572f70fda2adbf.zip |
File-level phpdoc for new class files. fixes #10287.
git-svn-id: https://develop.svn.wordpress.org/trunk@16101 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-includes')
-rw-r--r-- | wp-includes/class-wp-ajax-response.php | 11 | ||||
-rw-r--r-- | wp-includes/class-wp-error.php | 7 | ||||
-rw-r--r-- | wp-includes/class-wp-walker.php | 11 | ||||
-rw-r--r-- | wp-includes/class-wp.php | 11 |
4 files changed, 2 insertions, 38 deletions
diff --git a/wp-includes/class-wp-ajax-response.php b/wp-includes/class-wp-ajax-response.php index 725a12eb85..cf64bfbc35 100644 --- a/wp-includes/class-wp-ajax-response.php +++ b/wp-includes/class-wp-ajax-response.php @@ -1,16 +1,5 @@ <?php /** - * Holds Most of the WordPress classes. - * - * Some of the other classes are contained in other files. For example, the - * WordPress cache is in cache.php and the WordPress roles API is in - * capabilities.php. The third party libraries are contained in their own - * separate files. - * - * @package WordPress - */ - -/** * Send XML response back to AJAX request. * * @package WordPress diff --git a/wp-includes/class-wp-error.php b/wp-includes/class-wp-error.php index a9b94f5f54..1624195833 100644 --- a/wp-includes/class-wp-error.php +++ b/wp-includes/class-wp-error.php @@ -1,11 +1,8 @@ <?php /** - * Holds Most of the WordPress classes. + * WordPress Error API. * - * Some of the other classes are contained in other files. For example, the - * WordPress cache is in cache.php and the WordPress roles API is in - * capabilities.php. The third party libraries are contained in their own - * separate files. + * Contains the WP_Error class and the is_wp_error() function. * * @package WordPress */ diff --git a/wp-includes/class-wp-walker.php b/wp-includes/class-wp-walker.php index 8c95a91ea2..25e040592c 100644 --- a/wp-includes/class-wp-walker.php +++ b/wp-includes/class-wp-walker.php @@ -1,16 +1,5 @@ <?php /** - * Holds Most of the WordPress classes. - * - * Some of the other classes are contained in other files. For example, the - * WordPress cache is in cache.php and the WordPress roles API is in - * capabilities.php. The third party libraries are contained in their own - * separate files. - * - * @package WordPress - */ - -/** * A class for displaying various tree-like structures. * * Extend the Walker class to use it, see examples at the below. Child classes diff --git a/wp-includes/class-wp.php b/wp-includes/class-wp.php index a5bd84b686..88c1c23de5 100644 --- a/wp-includes/class-wp.php +++ b/wp-includes/class-wp.php @@ -1,16 +1,5 @@ <?php /** - * Holds Most of the WordPress classes. - * - * Some of the other classes are contained in other files. For example, the - * WordPress cache is in cache.php and the WordPress roles API is in - * capabilities.php. The third party libraries are contained in their own - * separate files. - * - * @package WordPress - */ - -/** * WordPress environment setup class. * * @package WordPress |