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

79 lines
2.1 KiB
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
namespace PhpParser\Node\Stmt;
use PhpParser\Node;
2019-01-05 12:06:18 +01:00
use PhpParser\Node\Identifier;
use PhpParser\Node\Name;
use PhpParser\Node\NullableType;
class Property extends Node\Stmt
{
/** @var int Modifiers */
public $flags;
/** @var PropertyProperty[] Properties */
public $props;
2019-01-05 12:06:18 +01:00
/** @var null|Identifier|Name|NullableType Type declaration */
public $type;
/**
* Constructs a class property list node.
*
2019-01-05 12:06:18 +01:00
* @param int $flags Modifiers
* @param PropertyProperty[] $props Properties
* @param array $attributes Additional attributes
* @param null|string|Identifier|Name|NullableType $type Type declaration
*/
2019-01-05 12:06:18 +01:00
public function __construct(int $flags, array $props, array $attributes = [], $type = null) {
$this->attributes = $attributes;
$this->flags = $flags;
$this->props = $props;
2019-01-05 12:06:18 +01:00
$this->type = \is_string($type) ? new Identifier($type) : $type;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
2019-01-05 12:06:18 +01:00
return ['flags', 'type', 'props'];
}
2017-01-24 08:38:55 +01:00
/**
* Whether the property is explicitly or implicitly public.
*
2017-01-24 08:38:55 +01:00
* @return bool
*/
2017-04-28 21:40:59 +02:00
public function isPublic() : bool {
return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0
|| ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0;
}
2017-01-24 08:38:55 +01:00
/**
* Whether the property is protected.
*
2017-01-24 08:38:55 +01:00
* @return bool
*/
2017-04-28 21:40:59 +02:00
public function isProtected() : bool {
return (bool) ($this->flags & Class_::MODIFIER_PROTECTED);
}
2017-01-24 08:38:55 +01:00
/**
* Whether the property is private.
*
2017-01-24 08:38:55 +01:00
* @return bool
*/
2017-04-28 21:40:59 +02:00
public function isPrivate() : bool {
return (bool) ($this->flags & Class_::MODIFIER_PRIVATE);
}
2017-01-24 08:38:55 +01:00
/**
* Whether the property is static.
*
2017-01-24 08:38:55 +01:00
* @return bool
*/
2017-04-28 21:40:59 +02:00
public function isStatic() : bool {
return (bool) ($this->flags & Class_::MODIFIER_STATIC);
}
2019-01-05 12:06:18 +01:00
public function getType() : string {
return 'Stmt_Property';
}
}