php-parser/lib/PHPParser/Node/Stmt/Property.php

41 lines
1.3 KiB
PHP
Raw Normal View History

<?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-10-15 19:28:15 +02:00
/**
* Constructs a class property list node.
*
* @param int $type Modifiers
* @param PHPParser_Node_Stmt_PropertyProperty[] $props Properties
* @param array $attributes Additional attributes
2011-10-15 19:28:15 +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,
),
$attributes
2011-10-15 19:28:15 +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);
}
}