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

23 lines
545 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
/**
* @property string $value String
*/
class PHPParser_Node_Stmt_InlineHTML extends PHPParser_Node_Stmt
{
/**
* Constructs an inline HTML node.
*
* @param string $value String
* @param int $line Line
* @param null|string $docComment Nearest doc comment
*/
public function __construct($value, $line = -1, $docComment = null) {
parent::__construct(
array(
'value' => $value,
),
$line, $docComment
);
}
2011-06-05 18:40:04 +02:00
}