You are here

final class TaggedValue in Lockr 7.3

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

Hierarchy

Expanded class hierarchy of TaggedValue

3 files declare their use of TaggedValue
Inline.php in vendor/symfony/yaml/Inline.php
Parser.php in vendor/symfony/yaml/Parser.php
ParserTest.php in vendor/symfony/yaml/Tests/ParserTest.php

File

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

Namespace

Symfony\Component\Yaml\Tag
View source
final class TaggedValue {
  private $tag;
  private $value;

  /**
   * @param string $tag
   * @param mixed  $value
   */
  public function __construct($tag, $value) {
    $this->tag = $tag;
    $this->value = $value;
  }

  /**
   * @return string
   */
  public function getTag() {
    return $this->tag;
  }

  /**
   * @return mixed
   */
  public function getValue() {
    return $this->value;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
TaggedValue::$tag private property
TaggedValue::$value private property
TaggedValue::getTag public function
TaggedValue::getValue public function
TaggedValue::__construct public function