Page MenuHomeWickedGov Phorge

ReferenceError.php
No OneTemporary

Size
980 B
Referenced Files
None
Subscribers
None

ReferenceError.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait ReferenceError {
// 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();
trigger_error(
'Undefined property via __get(): ' . $prop .
' in ' . $trace[1]['file'] .
' on line ' . $trace[1]['line'],
E_USER_NOTICE
);
return null;
}
// phpcs:enable
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 20:30 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
26/1c/90cde16c3ccd5e46a31004f4ae8c
Default Alt Text
ReferenceError.php (980 B)

Event Timeline