diff --git a/src/wp-includes/class.wp-scripts.php b/src/wp-includes/class.wp-scripts.php index 52c6824b5a..298eda7b5b 100644 --- a/src/wp-includes/class.wp-scripts.php +++ b/src/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() {