final class TaggedValue in Lockr 7.3
@author Nicolas Grekas <p@tchwork.com> @author Guilhem N. <egetick@gmail.com>
Hierarchy
- class \Symfony\Component\Yaml\Tag\TaggedValue
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\TagView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TaggedValue:: |
private | property | ||
TaggedValue:: |
private | property | ||
TaggedValue:: |
public | function | ||
TaggedValue:: |
public | function | ||
TaggedValue:: |
public | function |