php-parser/lib/Node/Expr/Include.php

9 lines
184 B
PHP
Raw Normal View History

2011-04-18 19:02:30 +02:00
<?php
class Node_Expr_Include extends Node_Expr
2011-04-18 19:02:30 +02:00
{
const TYPE_INCLUDE = 1;
const TYPE_INCLUDE_ONCE = 2;
const TYPE_REQUIRE = 3;
const TYPE_REQUIRE_ONCE = 4;
}