1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 10:18:09 +01:00
PHP-Parser/lib/Node/Stmt/Interface.php

10 lines
185 B
PHP
Raw Normal View History

<?php
2011-05-30 17:29:10 +02:00
/**
* @property string $name Name
* @property array $extends Extended interfaces
* @property array $stmts Statements
*/
class Node_Stmt_Interface extends Node_Stmt
{
}