Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

CallableTypeParameterNode.php

Namespace

PHPStan\PhpDocParser\Ast\Type

File

vendor/phpstan/phpdoc-parser/src/Ast/Type/CallableTypeParameterNode.php

View source
<?php

declare (strict_types=1);
namespace PHPStan\PhpDocParser\Ast\Type;

use PHPStan\PhpDocParser\Ast\Node;
use PHPStan\PhpDocParser\Ast\NodeAttributes;
use function trim;
class CallableTypeParameterNode implements Node {
    use NodeAttributes;
    
    /** @var TypeNode */
    public $type;
    
    /** @var bool */
    public $isReference;
    
    /** @var bool */
    public $isVariadic;
    
    /** @var string (may be empty) */
    public $parameterName;
    
    /** @var bool */
    public $isOptional;
    public function __construct(TypeNode $type, bool $isReference, bool $isVariadic, string $parameterName, bool $isOptional) {
        $this->type = $type;
        $this->isReference = $isReference;
        $this->isVariadic = $isVariadic;
        $this->parameterName = $parameterName;
        $this->isOptional = $isOptional;
    }
    public function __toString() : string {
        $type = "{$this->type} ";
        $isReference = $this->isReference ? '&' : '';
        $isVariadic = $this->isVariadic ? '...' : '';
        $isOptional = $this->isOptional ? '=' : '';
        return trim("{$type}{$isReference}{$isVariadic}{$this->parameterName}") . $isOptional;
    }

}

Classes

Title Deprecated Summary
CallableTypeParameterNode

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal