1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-02 17:28:27 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/InlineHTML.php

26 lines
507 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node\Stmt;
2011-06-05 18:40:04 +02:00
/**
* @property string $value String
*/
class InlineHTML extends Stmt
2011-06-05 18:40:04 +02:00
{
/**
* 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
);
}
2011-06-05 18:40:04 +02:00
}