%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/vendor/wikimedia/remex-html/RemexHtml/TreeBuilder/ |
| Current File : //www/varak.net/wiki.varak.net/vendor/wikimedia/remex-html/RemexHtml/TreeBuilder/Marker.php |
<?php
namespace RemexHtml\TreeBuilder;
use RemexHtml\PropGuard;
/**
* A pseudo-element used as a marker or bookmark in the list of active formatting elements
*/
class Marker implements FormattingElement {
use PropGuard;
public $nextAFE;
public $prevAFE;
public $nextNoah;
public $type;
public function __construct( $type ) {
$this->type = $type;
}
}