Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4104538
Node.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
Node.php
View Options
<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace
Wikimedia\IDLeDOM\Stub
;
use
Exception
;
use
Wikimedia\IDLeDOM\Document
;
use
Wikimedia\IDLeDOM\Element
;
use
Wikimedia\IDLeDOM\GetRootNodeOptions
;
use
Wikimedia\IDLeDOM\NodeList
;
trait
Node
{
// Underscore is used to avoid conflicts with DOM-reserved names
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
// phpcs:disable MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName
/**
* @return Exception
*/
abstract
protected
function
_unimplemented
():
Exception
;
// phpcs:enable
/**
* @return int
*/
public
function
getNodeType
():
int
{
throw
self
::
_unimplemented
();
}
/**
* @return string
*/
public
function
getNodeName
():
string
{
throw
self
::
_unimplemented
();
}
/**
* @return string
*/
public
function
getBaseURI
():
string
{
throw
self
::
_unimplemented
();
}
/**
* @return bool
*/
public
function
getIsConnected
():
bool
{
throw
self
::
_unimplemented
();
}
/**
* @return Document|null
*/
public
function
getOwnerDocument
()
{
throw
self
::
_unimplemented
();
}
/**
* @param GetRootNodeOptions|associative-array|null $options
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
getRootNode
(
/* ?mixed */
$options
=
null
)
{
throw
self
::
_unimplemented
();
}
/**
* @return \Wikimedia\IDLeDOM\Node|null
*/
public
function
getParentNode
()
{
throw
self
::
_unimplemented
();
}
/**
* @return Element|null
*/
public
function
getParentElement
()
{
throw
self
::
_unimplemented
();
}
/**
* @return bool
*/
public
function
hasChildNodes
():
bool
{
throw
self
::
_unimplemented
();
}
/**
* @return NodeList
*/
public
function
getChildNodes
()
{
throw
self
::
_unimplemented
();
}
/**
* @return \Wikimedia\IDLeDOM\Node|null
*/
public
function
getFirstChild
()
{
throw
self
::
_unimplemented
();
}
/**
* @return \Wikimedia\IDLeDOM\Node|null
*/
public
function
getLastChild
()
{
throw
self
::
_unimplemented
();
}
/**
* @return \Wikimedia\IDLeDOM\Node|null
*/
public
function
getPreviousSibling
()
{
throw
self
::
_unimplemented
();
}
/**
* @return \Wikimedia\IDLeDOM\Node|null
*/
public
function
getNextSibling
()
{
throw
self
::
_unimplemented
();
}
/**
* @return ?string
*/
public
function
getNodeValue
():
?
string
{
throw
self
::
_unimplemented
();
}
/**
* @param ?string $val
*/
public
function
setNodeValue
(
?
string
$val
):
void
{
throw
self
::
_unimplemented
();
}
/**
* @return ?string
*/
public
function
getTextContent
():
?
string
{
throw
self
::
_unimplemented
();
}
/**
* @param ?string $val
*/
public
function
setTextContent
(
?
string
$val
):
void
{
throw
self
::
_unimplemented
();
}
/**
* @return void
*/
public
function
normalize
():
void
{
throw
self
::
_unimplemented
();
}
/**
* @param bool $deep
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
cloneNode
(
bool
$deep
=
false
)
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node|null $otherNode
* @return bool
*/
public
function
isEqualNode
(
/* ?\Wikimedia\IDLeDOM\Node */
$otherNode
):
bool
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node|null $otherNode
* @return bool
*/
public
function
isSameNode
(
/* ?\Wikimedia\IDLeDOM\Node */
$otherNode
):
bool
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node $other
* @return int
*/
public
function
compareDocumentPosition
(
/* \Wikimedia\IDLeDOM\Node */
$other
):
int
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node|null $other
* @return bool
*/
public
function
contains
(
/* ?\Wikimedia\IDLeDOM\Node */
$other
):
bool
{
throw
self
::
_unimplemented
();
}
/**
* @param ?string $namespace
* @return ?string
*/
public
function
lookupPrefix
(
?
string
$namespace
):
?
string
{
throw
self
::
_unimplemented
();
}
/**
* @param ?string $prefix
* @return ?string
*/
public
function
lookupNamespaceURI
(
?
string
$prefix
):
?
string
{
throw
self
::
_unimplemented
();
}
/**
* @param ?string $namespace
* @return bool
*/
public
function
isDefaultNamespace
(
?
string
$namespace
):
bool
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node $node
* @param \Wikimedia\IDLeDOM\Node|null $child
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
insertBefore
(
/* \Wikimedia\IDLeDOM\Node */
$node
,
/* ?\Wikimedia\IDLeDOM\Node */
$child
=
null
)
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node $node
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
appendChild
(
/* \Wikimedia\IDLeDOM\Node */
$node
)
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node $node
* @param \Wikimedia\IDLeDOM\Node $child
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
replaceChild
(
/* \Wikimedia\IDLeDOM\Node */
$node
,
/* \Wikimedia\IDLeDOM\Node */
$child
)
{
throw
self
::
_unimplemented
();
}
/**
* @param \Wikimedia\IDLeDOM\Node $child
* @return \Wikimedia\IDLeDOM\Node
*/
public
function
removeChild
(
/* \Wikimedia\IDLeDOM\Node */
$child
)
{
throw
self
::
_unimplemented
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 18:31 (3 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
12/6b/387681e98f1233185fdf5b0e1237
Default Alt Text
Node.php (5 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment