2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
2014-11-13 20:25:52 +01:00
|
|
|
use PhpParser\Error;
|
2014-02-06 14:44:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property int $type Modifiers
|
|
|
|
* @property PropertyProperty[] $props Properties
|
|
|
|
*/
|
|
|
|
class Property extends Node\Stmt
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructs a class property list node.
|
|
|
|
*
|
|
|
|
* @param int $type Modifiers
|
|
|
|
* @param PropertyProperty[] $props Properties
|
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
|
|
|
public function __construct($type, array $props, array $attributes = array()) {
|
2014-11-13 20:25:52 +01:00
|
|
|
if ($type & Class_::MODIFIER_ABSTRACT) {
|
|
|
|
throw new Error('Properties cannot be declared abstract');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type & Class_::MODIFIER_FINAL) {
|
|
|
|
throw new Error('Properties cannot be declared final');
|
|
|
|
}
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'type' => $type,
|
|
|
|
'props' => $props,
|
|
|
|
),
|
|
|
|
$attributes
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isPublic() {
|
2015-03-02 11:33:41 +01:00
|
|
|
return ($this->type & Class_::MODIFIER_PUBLIC) !== 0 || $this->type === 0;
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function isProtected() {
|
|
|
|
return (bool) ($this->type & Class_::MODIFIER_PROTECTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isPrivate() {
|
|
|
|
return (bool) ($this->type & Class_::MODIFIER_PRIVATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isStatic() {
|
|
|
|
return (bool) ($this->type & Class_::MODIFIER_STATIC);
|
|
|
|
}
|
2014-11-13 20:18:49 +01:00
|
|
|
}
|