PHP 8.3.31
Preview: Suggestion.php Size: 828 B
/home/getspomw/royalsquad.us/vendor/symfony/console/Completion/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();
    }
}

Directory Contents

Dirs: 1 × Files: 4

Name Size Perms Modified Actions
Output DIR
- drwxrwxrwx 2026-04-21 19:19:59
Edit Download
7.91 KB lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
2.07 KB lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
1.32 KB lrw-r--r-- 2026-04-26 10:12:26
Edit Download
828 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).