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.