Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
TaggedValue.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Yaml\Tag;
13
14 /**
15 * @author Nicolas Grekas <p@tchwork.com>
16 * @author Guilhem N. <egetick@gmail.com>
17 */
18 final class TaggedValue
19 {
20 private $tag;
21 private $value;
22
23 /**
24 * @param string $tag
25 * @param mixed $value
26 */
27 public function __construct($tag, $value)
28 {
29 $this->tag = $tag;
30 $this->value = $value;
31 }
32
33 /**
34 * @return string
35 */
36 public function getTag()
37 {
38 return $this->tag;
39 }
40
41 /**
42 * @return mixed
43 */
44 public function getValue()
45 {
46 return $this->value;
47 }
48 }
49