_WP_Dependency::__construct()

Setup dependencies.


Source

File: wp-includes/class-wp-dependency.php

	public function __construct() {
		@list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = func_get_args();
		if ( ! is_array($this->deps) )
			$this->deps = array();
	}


Changelog

Changelog
Version Description
WP-2.6.0 Introduced.