📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 14:02:23
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc
🔄 Refresh
✏️
Editing: ParamImmediatelyInvokedCallableTagValueNode.php
Writable
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc; use PHPStan\PhpDocParser\Ast\NodeAttributes; use function trim; class ParamImmediatelyInvokedCallableTagValueNode implements PhpDocTagValueNode { use NodeAttributes; public string $parameterName; /** @var string (may be empty) */ public string $description; public function __construct(string $parameterName, string $description) { $this->parameterName = $parameterName; $this->description = $description; } public function __toString(): string { return trim("{$this->parameterName} {$this->description}"); } }
💾 Save Changes
❌ Cancel