Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431680
Attribute.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
808 B
Referenced Files
None
Subscribers
None
Attribute.php
View Options
<?php
declare
(
strict_types
=
1
);
namespace
PhpParser\Node
;
use
PhpParser\Node
;
use
PhpParser\NodeAbstract
;
class
Attribute
extends
NodeAbstract
{
/** @var Name Attribute name */
public
$name
;
/** @var Arg[] Attribute arguments */
public
$args
;
/**
* @param Node\Name $name Attribute name
* @param Arg[] $args Attribute arguments
* @param array $attributes Additional node attributes
*/
public
function
__construct
(
Name
$name
,
array
$args
=
[],
array
$attributes
=
[])
{
$this
->
attributes
=
$attributes
;
$this
->
name
=
$name
;
$this
->
args
=
$args
;
}
public
function
getSubNodeNames
()
:
array
{
return
[
'name'
,
'args'
];
}
public
function
getType
()
:
string
{
return
'Attribute'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:57 (1 d, 5 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8c/c3/0cbda755e0a1b6198c45325afea4
Default Alt Text
Attribute.php (808 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment