From 36367e7f6e3c1d36ee980cafa107b4842accff82 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 16 Dec 2015 17:48:27 +0000 Subject: [PATCH] Docs: Add missing DocBlocks, including summaries and `@since` versions, to the `__construct()` and `init()` methods in `WP_Scripts`. See #32246. Built from https://develop.svn.wordpress.org/trunk@35965 git-svn-id: http://core.svn.wordpress.org/trunk@35930 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class.wp-scripts.php | 9 +++++++++ wp-includes/version.php | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/wp-includes/class.wp-scripts.php b/wp-includes/class.wp-scripts.php index 52c6824b5a..298eda7b5b 100644 --- a/wp-includes/class.wp-scripts.php +++ b/wp-includes/class.wp-scripts.php @@ -30,12 +30,21 @@ class WP_Scripts extends WP_Dependencies { public $ext_version = ''; public $default_dirs; + /** + * Constructor. + * + * @since 2.6.0 + * @access public + */ public function __construct() { $this->init(); add_action( 'init', array( $this, 'init' ), 0 ); } /** + * Initialize the class. + * + * @since 3.4.0 * @access public */ public function init() { diff --git a/wp-includes/version.php b/wp-includes/version.php index f9e88b43a0..c39c6c2a05 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35964'; +$wp_version = '4.5-alpha-35965'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.