Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
phpdocumentor
/
reflection
/
src
/
phpDocumentor
/
Reflection
/
Php
:
CallArgument.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace phpDocumentor\Reflection\Php; /** * Represents an argument in a function or method call. * * @api */ final class CallArgument { public function __construct(private readonly string $value, private readonly string|null $name = null) { } public function getValue(): string { return $this->value; } public function getName(): string|null { return $this->name; } }