%PDF- %PDF-
Direktori : /var/www/html/zgjedhjet2017/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/ |
Current File : /var/www/html/zgjedhjet2017/vendor/nikic/php-parser/lib/PhpParser/Node/Stmt/Throw_.php |
<?php namespace PhpParser\Node\Stmt; use PhpParser\Node; class Throw_ extends Node\Stmt { /** @var Node\Expr Expression */ public $expr; /** * Constructs a throw node. * * @param Node\Expr $expr Expression * @param array $attributes Additional attributes */ public function __construct(Node\Expr $expr, array $attributes = array()) { parent::__construct($attributes); $this->expr = $expr; } public function getSubNodeNames() { return array('expr'); } }