Page MenuHomeWickedGov Phorge

TaggedValue.php
No OneTemporary

Size
709 B
Referenced Files
None
Subscribers
None

TaggedValue.php

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Yaml\Tag;
/**
* @author Nicolas Grekas <p@tchwork.com>
* @author Guilhem N. <egetick@gmail.com>
*/
final class TaggedValue
{
private $tag;
private $value;
public function __construct(string $tag, $value)
{
$this->tag = $tag;
$this->value = $value;
}
public function getTag(): string
{
return $this->tag;
}
public function getValue()
{
return $this->value;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 19:07 (5 h, 50 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b9/b9/235d2d6e76faa875187c59d5678e
Default Alt Text
TaggedValue.php (709 B)

Event Timeline