Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4133267
Range.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
Range.php
View Options
<?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
\W
ikimedia
\I
DLeDOM
\R
ange $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
\W
ikimedia
\I
DLeDOM
\H
elper
\R
ange $this'
;
// @var \Wikimedia\IDLeDOM\Helper\Range $this
return
$this
->
_getMissingProp
(
$name
);
}
/**
* @param string $name
* @return bool
*/
public
function
__isset
(
string
$name
):
bool
{
'@phan-var
\W
ikimedia
\I
DLeDOM
\R
ange $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
\W
ikimedia
\I
DLeDOM
\R
ange $this'
;
// @var \Wikimedia\IDLeDOM\Range $this
return
$this
->
toString
();
}
}
File Metadata
Details
Attached
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)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment