Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/idle-dom/src/Helper/StaticRangeInit.php
Ðазад
<?php // AUTOMATICALLY GENERATED. DO NOT EDIT. // Use `composer build` to regenerate. namespace Wikimedia\IDLeDOM\Helper; use Wikimedia\IDLeDOM\Node; trait StaticRangeInit { // 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\StaticRangeInit $this'; // @var \Wikimedia\IDLeDOM\StaticRangeInit $this switch ( $name ) { case "startContainer": return $this->getStartContainer(); case "startOffset": return $this->getStartOffset(); case "endContainer": return $this->getEndContainer(); case "endOffset": return $this->getEndOffset(); default: break; } '@phan-var \Wikimedia\IDLeDOM\Helper\StaticRangeInit $this'; // @var \Wikimedia\IDLeDOM\Helper\StaticRangeInit $this return $this->_getMissingProp( $name ); } /** * @param string $name * @return bool */ public function __isset( string $name ): bool { '@phan-var \Wikimedia\IDLeDOM\StaticRangeInit $this'; // @var \Wikimedia\IDLeDOM\StaticRangeInit $this switch ( $name ) { case "startContainer": return true; case "startOffset": return true; case "endContainer": return true; case "endOffset": return true; default: break; } return false; } /** * @param mixed $offset * @return bool */ public function offsetExists( $offset ): bool { switch ( $offset ) { case "startContainer": case "startOffset": case "endContainer": case "endOffset": return true; default: break; } return false; } /** * @param mixed $offset * @return mixed */ public function offsetGet( $offset ) { return $this->$offset; } /** * @param mixed $offset * @param mixed $value */ public function offsetSet( $offset, $value ): void { $this->$offset = $value; } /** * @param mixed $offset */ public function offsetUnset( $offset ): void { unset( $this->$offset ); } /** * Create a StaticRangeInit from an associative array. * * @param array|\Wikimedia\IDLeDOM\StaticRangeInit $a * @return \Wikimedia\IDLeDOM\StaticRangeInit */ public static function cast( $a ) { if ( $a instanceof \Wikimedia\IDLeDOM\StaticRangeInit ) { return $a; } return new class( $a ) extends \Wikimedia\IDLeDOM\StaticRangeInit { use StaticRangeInit; /** @var array */ private $a; /** * @param array $a */ public function __construct( $a ) { $this->a = $a; } /** * @return Node */ public function getStartContainer() { return $this->a["startContainer"]; } /** * @return int */ public function getStartOffset(): int { return $this->a["startOffset"]; } /** * @return Node */ public function getEndContainer() { return $this->a["endContainer"]; } /** * @return int */ public function getEndOffset(): int { return $this->a["endOffset"]; } }; } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка