mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
22 lines
484 B
PHP
22 lines
484 B
PHP
<?php
|
|
|
|
/**
|
|
* @property string $value String
|
|
*/
|
|
class PHPParser_Node_Stmt_InlineHTML extends PHPParser_Node_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
|
|
);
|
|
}
|
|
} |