Page MenuHomeWickedGov Phorge

MutationRecord.php
No OneTemporary

Size
3 KB
Referenced Files
None
Subscribers
None

MutationRecord.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait MutationRecord {
// 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 string $name
* @return mixed
*/
public function __get( string $name ) {
'@phan-var \Wikimedia\IDLeDOM\MutationRecord $this';
// @var \Wikimedia\IDLeDOM\MutationRecord $this
switch ( $name ) {
case "type":
return $this->getType();
case "target":
return $this->getTarget();
case "addedNodes":
return $this->getAddedNodes();
case "removedNodes":
return $this->getRemovedNodes();
case "previousSibling":
return $this->getPreviousSibling();
case "nextSibling":
return $this->getNextSibling();
case "attributeName":
return $this->getAttributeName();
case "attributeNamespace":
return $this->getAttributeNamespace();
case "oldValue":
return $this->getOldValue();
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\MutationRecord $this';
// @var \Wikimedia\IDLeDOM\Helper\MutationRecord $this
return $this->_getMissingProp( $name );
}
/**
* @param string $name
* @return bool
*/
public function __isset( string $name ): bool {
'@phan-var \Wikimedia\IDLeDOM\MutationRecord $this';
// @var \Wikimedia\IDLeDOM\MutationRecord $this
switch ( $name ) {
case "type":
return true;
case "target":
return true;
case "addedNodes":
return true;
case "removedNodes":
return true;
case "previousSibling":
return $this->getPreviousSibling() !== null;
case "nextSibling":
return $this->getNextSibling() !== null;
case "attributeName":
return $this->getAttributeName() !== null;
case "attributeNamespace":
return $this->getAttributeNamespace() !== null;
case "oldValue":
return $this->getOldValue() !== null;
default:
break;
}
return false;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 03:46 (1 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d5/21/f019b00c61204462a246d038bde2
Default Alt Text
MutationRecord.php (3 KB)

Event Timeline