Page MenuHomeWickedGov Phorge

Range.php
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

Range.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM\Helper;
trait Range {
// 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\Range $this';
// @var \Wikimedia\IDLeDOM\Range $this
switch ( $name ) {
case "startContainer":
return $this->getStartContainer();
case "startOffset":
return $this->getStartOffset();
case "endContainer":
return $this->getEndContainer();
case "endOffset":
return $this->getEndOffset();
case "collapsed":
return $this->getCollapsed();
case "commonAncestorContainer":
return $this->getCommonAncestorContainer();
default:
break;
}
'@phan-var \Wikimedia\IDLeDOM\Helper\Range $this';
// @var \Wikimedia\IDLeDOM\Helper\Range $this
return $this->_getMissingProp( $name );
}
/**
* @param string $name
* @return bool
*/
public function __isset( string $name ): bool {
'@phan-var \Wikimedia\IDLeDOM\Range $this';
// @var \Wikimedia\IDLeDOM\Range $this
switch ( $name ) {
case "startContainer":
return true;
case "startOffset":
return true;
case "endContainer":
return true;
case "endOffset":
return true;
case "collapsed":
return true;
case "commonAncestorContainer":
return true;
default:
break;
}
return false;
}
/**
* @return string
*/
public function __toString(): string {
'@phan-var \Wikimedia\IDLeDOM\Range $this';
// @var \Wikimedia\IDLeDOM\Range $this
return $this->toString();
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 12:03 (3 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
80/33/f84ee9d2ffd00b254958c70491e1
Default Alt Text
Range.php (2 KB)

Event Timeline