1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Property.php
2014-11-13 20:25:52 +01:00

60 lines
1.6 KiB
PHP

<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
use PhpParser\Error;
/**
* @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()) {
if (0 === ($type & Class_::VISIBILITY_MODIFER_MASK)) {
// If no visibility modifier given, PHP defaults to public
$type |= Class_::MODIFIER_PUBLIC;
}
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');
}
parent::__construct(
array(
'type' => $type,
'props' => $props,
),
$attributes
);
}
public function isPublic() {
return (bool) ($this->type & Class_::MODIFIER_PUBLIC);
}
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);
}
}