Page MenuHomeWickedGov Phorge

InlineHTML.php
No OneTemporary

Size
649 B
Referenced Files
None
Subscribers
None

InlineHTML.php

<?php declare(strict_types=1);
namespace PhpParser\Node\Stmt;
use PhpParser\Node\Stmt;
class InlineHTML extends Stmt
{
/** @var string String */
public $value;
/**
* Constructs an inline HTML node.
*
* @param string $value String
* @param array $attributes Additional attributes
*/
public function __construct(string $value, array $attributes = []) {
$this->attributes = $attributes;
$this->value = $value;
}
public function getSubNodeNames() : array {
return ['value'];
}
public function getType() : string {
return 'Stmt_InlineHTML';
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 22:33 (2 h, 6 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b5/8a/065c9cb3f4e42d13622aee40ae16
Default Alt Text
InlineHTML.php (649 B)

Event Timeline