mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 17:57:59 +01:00
26 lines
507 B
PHP
26 lines
507 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
/**
|
|
* @property string $value String
|
|
*/
|
|
class InlineHTML extends Stmt
|
|
{
|
|
/**
|
|
* Constructs an inline HTML node.
|
|
*
|
|
* @param string $value String
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($value, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'value' => $value,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |