public function TraversableString::__construct

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php, line 24

Class

TraversableString
An object that can be used as either a string or array.

Namespace

Assetic\Util

Code

public function __construct($one, array $many) {
  $this->one = $one;
  $this->many = $many;
}