You are here

public function TaggedValue::__construct in Lockr 7.3

Parameters

string $tag:

mixed $value:

File

vendor/symfony/yaml/Tag/TaggedValue.php, line 27

Class

TaggedValue
@author Nicolas Grekas <p@tchwork.com> @author Guilhem N. <egetick@gmail.com>

Namespace

Symfony\Component\Yaml\Tag

Code

public function __construct($tag, $value) {
  $this->tag = $tag;
  $this->value = $value;
}