2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2011-06-05 18:40:04 +02:00
|
|
|
/**
|
|
|
|
* @property string $value String
|
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
class InlineHTML extends Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs an inline HTML node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param string $value String
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($value, array $attributes = array()) {
|
2011-09-22 20:27:12 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'value' => $value,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|