Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
symfony
/
console
/
Completion
Location:
/home/zoteqbgb/public_html/vendor/symfony/console/Completion
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Suggestion.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Completion; /** * Represents a single suggested value. * * @author Wouter de Jong <wouter@wouterj.nl> */ class Suggestion implements \Stringable { public function __construct( private readonly string $value, private readonly string $description = '' ) { } public function getValue(): string { return $this->value; } public function getDescription(): string { return $this->description; } public function __toString(): string { return $this->getValue(); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
CompletionInput.php
8,138 bytes
0644
2024-12-07 17:07
âï¸
ðï¸
Rename
CompletionSuggestions.php
2,118 bytes
0644
2024-12-07 17:07
âï¸
ðï¸
Rename
Output
-
0755
2024-12-07 17:07
ðï¸
Rename
Suggestion.php
827 bytes
0644
2024-12-07 17:07
âï¸
ðï¸
Rename
Chang
Apply