Page MenuHomeWickedGov Phorge

Attribute.php
No OneTemporary

Size
808 B
Referenced Files
None
Subscribers
None

Attribute.php

<?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

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)

Event Timeline