2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 12:20:47 +02:00
|
|
|
/**
|
2011-10-15 19:28:15 +02:00
|
|
|
* @property int $type Modifiers
|
|
|
|
* @property PHPParser_Node_Stmt_PropertyProperty[] $props Properties
|
2011-05-29 12:20:47 +02:00
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_Property extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-10-15 19:28:15 +02:00
|
|
|
/**
|
|
|
|
* Constructs a class property list node.
|
|
|
|
*
|
|
|
|
* @param int $type Modifiers
|
|
|
|
* @param PHPParser_Node_Stmt_PropertyProperty[] $props Properties
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-10-15 19:28:15 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($type, array $props, array $attributes = array()) {
|
2011-10-15 19:28:15 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'type' => $type,
|
|
|
|
'props' => $props,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-15 19:28:15 +02:00
|
|
|
);
|
|
|
|
}
|
2012-07-07 16:08:37 +02:00
|
|
|
|
|
|
|
public function isPublic() {
|
|
|
|
return (bool) ($this->type & PHPParser_Node_Stmt_Class::MODIFIER_PUBLIC);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isProtected() {
|
|
|
|
return (bool) ($this->type & PHPParser_Node_Stmt_Class::MODIFIER_PROTECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isPrivate() {
|
|
|
|
return (bool) ($this->type & PHPParser_Node_Stmt_Class::MODIFIER_PRIVATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isStatic() {
|
|
|
|
return (bool) ($this->type & PHPParser_Node_Stmt_Class::MODIFIER_STATIC);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|