Page MenuHomeWickedGov Phorge

Document.php
No OneTemporary

Size
11 KB
Referenced Files
None
Subscribers
None

Document.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait Document {
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* Handle an attempt to get a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* return null (like JavaScript), dynamically create the
* property, etc.
* @param string $prop the name of the property requested
* @return mixed
*/
abstract protected function _getMissingProp( string $prop );
/**
* Handle an attempt to set a non-existing property on this
* object. The default implementation raises an exception
* but the implementor can choose a different behavior:
* ignore the operation (like JavaScript), dynamically create
* the property, etc.
* @param string $prop the name of the property requested
* @param mixed $value the value to set
*/
abstract protected function _setMissingProp( string $prop, $value ): void;
// phpcs:enable
/**
* @param string $name
* @return mixed
*/
public function __get( string $name ) {
'@phan-var \Wikimedia\IDLeDOM\Document $this';
// @var \Wikimedia\IDLeDOM\Document $this
switch ( $name ) {
case "nodeType":
return $this->getNodeType();
case "nodeName":
return $this->getNodeName();
case "baseURI":
return $this->getBaseURI();
case "isConnected":
return $this->getIsConnected();
case "ownerDocument":
return $this->getOwnerDocument();
case "parentNode":
return $this->getParentNode();
case "parentElement":
return $this->getParentElement();
case "childNodes":
return $this->getChildNodes();
case "firstChild":
return $this->getFirstChild();
case "lastChild":
return $this->getLastChild();
case "previousSibling":
return $this->getPreviousSibling();
case "nextSibling":
return $this->getNextSibling();
case "nodeValue":
return $this->getNodeValue();
case "textContent":
return $this->getTextContent();
case "styleSheets":
return $this->getStyleSheets();
case "onload":
return $this->getOnload();
case "children":
return $this->getChildren();
case "firstElementChild":
return $this->getFirstElementChild();
case "lastElementChild":
return $this->getLastElementChild();
case "childElementCount":
return $this->getChildElementCount();
case "implementation":
return $this->getImplementation();
case "URL":
return $this->getURL();
case "documentURI":
return $this->getDocumentURI();
case "compatMode":
return $this->getCompatMode();
case "characterSet":
return $this->getCharacterSet();
case "charset":
return $this->getCharset();
case "inputEncoding":
return $this->getInputEncoding();
case "contentType":
return $this->getContentType();
case "doctype":
return $this->getDoctype();
case "documentElement":
return $this->getDocumentElement();
case "location":
return $this->getLocation();
case "referrer":
return $this->getReferrer();
case "cookie":
return $this->getCookie();
case "lastModified":
return $this->getLastModified();
case "title":
return $this->getTitle();
case "dir":
return $this->getDir();
case "body":
return $this->getBody();
case "head":
return $this->getHead();
case "images":
return $this->getImages();
case "embeds":
return $this->getEmbeds();
case "plugins":
return $this->getPlugins();
case "links":
return $this->getLinks();
case "forms":
return $this->getForms();
case "scripts":
return $this->getScripts();
case "currentScript":
return $this->getCurrentScript();
case "onreadystatechange":
return $this->getOnreadystatechange();
case "anchors":
return $this->getAnchors();
case "applets":
return $this->getApplets();
case "hidden":
return $this->getHidden();
case "visibilityState":
return $this->getVisibilityState();
case "onvisibilitychange":
return $this->getOnvisibilitychange();
case "encoding":
return $this->getEncoding();
case "preserveWhiteSpace":
return $this->getPreserveWhiteSpace();
case "formatOutput":
return $this->getFormatOutput();
case "validateOnParse":
return $this->getValidateOnParse();
case "strictErrorChecking":
return $this->getStrictErrorChecking();
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\Document $this';
// @var \Wikimedia\IDLeDOM\Helper\Document $this
return $this->_getMissingProp( $name );
}
/**
* @param string $name
* @return bool
*/
public function __isset( string $name ): bool {
'@phan-var \Wikimedia\IDLeDOM\Document $this';
// @var \Wikimedia\IDLeDOM\Document $this
switch ( $name ) {
case "nodeType":
return true;
case "nodeName":
return true;
case "baseURI":
return true;
case "isConnected":
return true;
case "ownerDocument":
return $this->getOwnerDocument() !== null;
case "parentNode":
return $this->getParentNode() !== null;
case "parentElement":
return $this->getParentElement() !== null;
case "childNodes":
return true;
case "firstChild":
return $this->getFirstChild() !== null;
case "lastChild":
return $this->getLastChild() !== null;
case "previousSibling":
return $this->getPreviousSibling() !== null;
case "nextSibling":
return $this->getNextSibling() !== null;
case "nodeValue":
return $this->getNodeValue() !== null;
case "textContent":
return $this->getTextContent() !== null;
case "styleSheets":
return true;
case "onload":
return true;
case "children":
return true;
case "firstElementChild":
return $this->getFirstElementChild() !== null;
case "lastElementChild":
return $this->getLastElementChild() !== null;
case "childElementCount":
return true;
case "implementation":
return true;
case "URL":
return true;
case "documentURI":
return true;
case "compatMode":
return true;
case "characterSet":
return true;
case "charset":
return true;
case "inputEncoding":
return true;
case "contentType":
return true;
case "doctype":
return $this->getDoctype() !== null;
case "documentElement":
return $this->getDocumentElement() !== null;
case "location":
return $this->getLocation() !== null;
case "referrer":
return true;
case "cookie":
return true;
case "lastModified":
return true;
case "title":
return true;
case "dir":
return true;
case "body":
return $this->getBody() !== null;
case "head":
return $this->getHead() !== null;
case "images":
return true;
case "embeds":
return true;
case "plugins":
return true;
case "links":
return true;
case "forms":
return true;
case "scripts":
return true;
case "currentScript":
return $this->getCurrentScript() !== null;
case "onreadystatechange":
return true;
case "anchors":
return true;
case "applets":
return true;
case "hidden":
return true;
case "visibilityState":
return true;
case "onvisibilitychange":
return true;
case "encoding":
return true;
case "preserveWhiteSpace":
return true;
case "formatOutput":
return true;
case "validateOnParse":
return true;
case "strictErrorChecking":
return true;
default:
break;
}
return false;
}
/**
* @param string $name
* @param mixed $value
*/
public function __set( string $name, $value ): void {
'@phan-var \Wikimedia\IDLeDOM\Document $this';
// @var \Wikimedia\IDLeDOM\Document $this
switch ( $name ) {
case "nodeValue":
$this->setNodeValue( $value );
return;
case "textContent":
$this->setTextContent( $value );
return;
case "onload":
$this->setOnload( $value );
return;
case "location":
$this->setLocation( $value );
return;
case "cookie":
$this->setCookie( $value );
return;
case "title":
$this->setTitle( $value );
return;
case "dir":
$this->setDir( $value );
return;
case "body":
$this->setBody( $value );
return;
case "onreadystatechange":
$this->setOnreadystatechange( $value );
return;
case "onvisibilitychange":
$this->setOnvisibilitychange( $value );
return;
case "encoding":
$this->setEncoding( $value );
return;
case "preserveWhiteSpace":
$this->setPreserveWhiteSpace( $value );
return;
case "formatOutput":
$this->setFormatOutput( $value );
return;
case "validateOnParse":
$this->setValidateOnParse( $value );
return;
case "strictErrorChecking":
$this->setStrictErrorChecking( $value );
return;
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\Document $this';
// @var \Wikimedia\IDLeDOM\Helper\Document $this
$this->_setMissingProp( $name, $value );
}
/**
* @param string $name
*/
public function __unset( string $name ): void {
'@phan-var \Wikimedia\IDLeDOM\Document $this';
// @var \Wikimedia\IDLeDOM\Document $this
switch ( $name ) {
case "nodeType":
break;
case "nodeName":
break;
case "baseURI":
break;
case "isConnected":
break;
case "ownerDocument":
break;
case "parentNode":
break;
case "parentElement":
break;
case "childNodes":
break;
case "firstChild":
break;
case "lastChild":
break;
case "previousSibling":
break;
case "nextSibling":
break;
case "nodeValue":
$this->setNodeValue( null );
return;
case "textContent":
$this->setTextContent( null );
return;
case "styleSheets":
break;
case "onload":
break;
case "children":
break;
case "firstElementChild":
break;
case "lastElementChild":
break;
case "childElementCount":
break;
case "implementation":
break;
case "URL":
break;
case "documentURI":
break;
case "compatMode":
break;
case "characterSet":
break;
case "charset":
break;
case "inputEncoding":
break;
case "contentType":
break;
case "doctype":
break;
case "documentElement":
break;
case "location":
break;
case "referrer":
break;
case "cookie":
break;
case "lastModified":
break;
case "title":
break;
case "dir":
break;
case "body":
$this->setBody( null );
return;
case "head":
break;
case "images":
break;
case "embeds":
break;
case "plugins":
break;
case "links":
break;
case "forms":
break;
case "scripts":
break;
case "currentScript":
break;
case "onreadystatechange":
break;
case "anchors":
break;
case "applets":
break;
case "hidden":
break;
case "visibilityState":
break;
case "onvisibilitychange":
break;
case "encoding":
break;
case "preserveWhiteSpace":
break;
case "formatOutput":
break;
case "validateOnParse":
break;
case "strictErrorChecking":
break;
default:
return;
}
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__unset"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $name .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
/**
* @param string $val
*/
public function setLocation( string $val ): void {
'@phan-var \Wikimedia\IDLeDOM\Document $this';
// @var \Wikimedia\IDLeDOM\Document $this
$this->getLocation()->setHref( $val );
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 15:59 (3 w, 6 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
fe/c1/89bf50aeda11ee0f34f3573aa408
Default Alt Text
Document.php (11 KB)

Event Timeline