Page MenuHomeWickedGov Phorge

DOMStringMap.php
No OneTemporary

Size
4 KB
Referenced Files
None
Subscribers
None

DOMStringMap.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait DOMStringMap {
// 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
*/
protected function _getMissingProp( string $prop ) {
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__get"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
return null;
}
/**
* 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
*/
protected function _setMissingProp( string $prop, $value ): void {
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "__set"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $prop .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
// phpcs:enable
/**
* @param mixed $offset
* @return bool
*/
public function offsetExists( $offset ): bool {
return $this->offsetGet( $offset ) !== null;
}
/**
* @param mixed $offset
* @return mixed
*/
public function offsetGet( $offset ) {
'@phan-var \Wikimedia\IDLeDOM\DOMStringMap $this';
// @var \Wikimedia\IDLeDOM\DOMStringMap $this
if ( is_numeric( $offset ) ) {
/* Fall through */
} elseif ( is_string( $offset ) ) {
return $this->namedItem( $offset );
}
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "offsetGet" &&
$trace[0]['function'] !== "offsetExists"
) {
array_shift( $trace );
}
while (
count( $trace ) > 1 && (
$trace[1]['function'] === "offsetGet" ||
$trace[1]['function'] === "offsetExists"
) ) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $offset .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
return null;
}
/**
* @param mixed $offset
* @param mixed $value
*/
public function offsetSet( $offset, $value ): void {
'@phan-var \Wikimedia\IDLeDOM\DOMStringMap $this';
// @var \Wikimedia\IDLeDOM\DOMStringMap $this
if ( is_numeric( $offset ) ) {
/* Fall through */
} elseif ( is_string( $offset ) ) {
$this->setNamedItem( $offset, $value );
}
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "offsetSet"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $offset .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
/**
* @param mixed $offset
*/
public function offsetUnset( $offset ): void {
'@phan-var \Wikimedia\IDLeDOM\DOMStringMap $this';
// @var \Wikimedia\IDLeDOM\DOMStringMap $this
if ( is_numeric( $offset ) ) {
/* Fall through */
} elseif ( is_string( $offset ) ) {
$this->removeNamedItem( $offset );
}
$trace = debug_backtrace();
while (
count( $trace ) > 0 &&
$trace[0]['function'] !== "offsetUnset"
) {
array_shift( $trace );
}
trigger_error(
'Undefined property' .
' via ' . ( $trace[0]['function'] ?? '' ) . '(): ' . $offset .
' in ' . ( $trace[0]['file'] ?? '' ) .
' on line ' . ( $trace[0]['line'] ?? '' ),
E_USER_NOTICE
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Aug 19 2026, 16:47 (4 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
6e/5d/1cb7747ccded2f0ef80f24deff0e
Default Alt Text
DOMStringMap.php (4 KB)

Event Timeline