Page MenuHomeDevCentral

Tag.php
No OneTemporary

<?php
namespace Keruald\Yaml\Tags;
abstract class Tag {
public abstract function getPrimaryTag () : string;
public abstract function getPrivateTag () : string;
public abstract function handle (mixed $data) : mixed;
public function register (&$tags) : void {
$tags[$this->getPrimaryTag()] = $this;
$tags[$this->getPrivateTag()] = $this;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sun, Nov 16, 13:10 (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3152824
Default Alt Text
Tag.php (383 B)

Event Timeline