%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/vendor/wikimedia/remex-html/RemexHtml/Tokenizer/ |
| Current File : /www/varak.net/wiki.varak.net/vendor/wikimedia/remex-html/RemexHtml/Tokenizer/Attribute.php |
<?php
namespace RemexHtml\Tokenizer;
use RemexHtml\PropGuard;
/**
* A namespaced attribute, as returned by Attributes::getObjects()
*/
class Attribute {
use PropGuard;
public $qualifiedName;
public $namespaceURI;
public $prefix;
public $localName;
public $value;
public function __construct( $qualifiedName, $namespaceURI, $prefix, $localName, $value ) {
$this->qualifiedName = $qualifiedName;
$this->namespaceURI = $namespaceURI;
$this->prefix = $prefix;
$this->localName = $localName;
$this->value = $value;
}
}