Page MenuHomeWickedGov Phorge

Attribute.php
No OneTemporary

Size
559 B
Referenced Files
None
Subscribers
None

Attribute.php

<?php
namespace Wikimedia\RemexHtml\Tokenizer;
use Wikimedia\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;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 12:16 (3 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
2a/07/464b9158ce4ab15d6ad7e3624e2a
Default Alt Text
Attribute.php (559 B)

Event Timeline