![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/pdepend/pdepend/src/main/php/PDepend/Source/AST/ |
<?php /** * This file is part of PDepend. * * PHP Version 5 * * Copyright (c) 2008-2017 Manuel Pichler <[email protected]>. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * * Neither the name of Manuel Pichler nor the names of his * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * @copyright 2008-2017 Manuel Pichler. All rights reserved. * @license http://www.opensource.org/licenses/bsd-license.php BSD License */ namespace PDepend\Source\AST; use PDepend\Source\ASTVisitor\ASTVisitor; /** * This code class represents a class property. * * @copyright 2008-2017 Manuel Pichler. All rights reserved. * @license http://www.opensource.org/licenses/bsd-license.php BSD License */ class ASTProperty extends AbstractASTArtifact { /** * The parent type object. * * @var ASTClass */ private $declaringClass = null; /** * The wrapped field declaration instance. * * @var ASTFieldDeclaration * * @since 0.9.6 */ private $fieldDeclaration = null; /** * The wrapped variable declarator instance. * * @var ASTVariableDeclarator * * @since 0.9.6 */ private $variableDeclarator = null; /** * Constructs a new item for the given field declaration and variable * declarator. * * @param ASTFieldDeclaration $fieldDeclaration The context field declaration where this property was declared in the source. * @param ASTVariableDeclarator $variableDeclarator The context variable declarator for this property instance. */ public function __construct( ASTFieldDeclaration $fieldDeclaration, ASTVariableDeclarator $variableDeclarator ) { $this->fieldDeclaration = $fieldDeclaration; $this->variableDeclarator = $variableDeclarator; $this->id = spl_object_hash($this); } /** * Returns the item name. * * @return string */ public function getName() { return $this->variableDeclarator->getImage(); } /** * This method returns a OR combined integer of the declared modifiers for * this property. * * @return int * * @since 0.9.6 */ public function getModifiers() { return $this->fieldDeclaration->getModifiers(); } /** * Returns <b>true</b> if this node is marked as public, otherwise the * returned value will be <b>false</b>. * * @return bool */ public function isPublic() { return $this->fieldDeclaration->isPublic(); } /** * Returns <b>true</b> if this node is marked as protected, otherwise the * returned value will be <b>false</b>. * * @return bool */ public function isProtected() { return $this->fieldDeclaration->isProtected(); } /** * Returns <b>true</b> if this node is marked as private, otherwise the * returned value will be <b>false</b>. * * @return bool */ public function isPrivate() { return $this->fieldDeclaration->isPrivate(); } /** * Returns <b>true</b> when this node is declared as static, otherwise * the returned value will be <b>false</b>. * * @return bool */ public function isStatic() { return $this->fieldDeclaration->isStatic(); } /** * This method will return <b>true</b> when this property doc comment * contains an array type hint, otherwise the it will return <b>false</b>. * * @return bool * * @since 0.9.6 */ public function isArray() { $typeNode = $this->fieldDeclaration->getFirstChildOfType( 'PDepend\\Source\\AST\\ASTType' ); if ($typeNode === null) { return false; } return $typeNode->isArray(); } /** * This method will return <b>true</b> when this property doc comment * contains a primitive type hint, otherwise the it will return <b>false</b>. * * @return bool * * @since 0.9.6 */ public function isScalar() { $typeNode = $this->fieldDeclaration->getFirstChildOfType( 'PDepend\\Source\\AST\\ASTType' ); if ($typeNode === null) { return false; } return $typeNode->isScalar(); } /** * Returns the type of this property. This method will return <b>null</b> * for all scalar type, only class properties will have a type. * * @return AbstractASTClassOrInterface|null * * @since 0.9.5 */ public function getClass() { $reference = $this->fieldDeclaration->getFirstChildOfType( 'PDepend\\Source\\AST\\ASTClassOrInterfaceReference' ); if ($reference === null) { return null; } return $reference->getType(); } /** * Returns the doc comment for this item or <b>null</b>. * * @return string */ public function getComment() { return $this->fieldDeclaration->getComment(); } /** * Returns the line number where the property declaration can be found. * * @return int * * @since 0.9.6 */ public function getStartLine() { return $this->variableDeclarator->getStartLine(); } /** * Returns the column number where the property declaration starts. * * @return int * * @since 0.9.8 */ public function getStartColumn() { return $this->variableDeclarator->getStartColumn(); } /** * Returns the line number where the property declaration ends. * * @return int * * @since 0.9.6 */ public function getEndLine() { return $this->variableDeclarator->getEndLine(); } /** * Returns the column number where the property declaration ends. * * @return int * * @since 0.9.8 */ public function getEndColumn() { return $this->variableDeclarator->getEndColumn(); } /** * This method will return the class where this property was declared. * * @return AbstractASTClassOrInterface * * @since 0.9.6 */ public function getDeclaringClass() { return $this->declaringClass; } /** * Sets the declaring class object. * * @return void * * @since 0.9.6 */ public function setDeclaringClass(ASTClass $declaringClass) { $this->declaringClass = $declaringClass; } /** * This method will return <b>true</b> when the parameter declaration * contains a default value. * * @return bool * * @since 0.9.6 */ public function isDefaultValueAvailable() { $value = $this->variableDeclarator->getValue(); if ($value === null) { return false; } return $value->isValueAvailable(); } /** * This method will return the default value for this property instance or * <b>null</b> when this property was only declared and not initialized. * * @return mixed * * @since 0.9.6 */ public function getDefaultValue() { $value = $this->variableDeclarator->getValue(); if ($value === null) { return null; } return $value->getValue(); } /** * This method returns a string representation of this parameter. * * @return string * * @since 0.9.6 */ public function __toString() { $static = ''; if ($this->isStatic() === true) { $static = ' static'; } $visibility = ' public'; if ($this->isProtected() === true) { $visibility = ' protected'; } elseif ($this->isPrivate() === true) { $visibility = ' private'; } return sprintf( 'Property [%s%s %s ]%s', $visibility, $static, $this->getName(), PHP_EOL ); } }