PHP 8.3.30
Preview: CommandNotFoundException.php Size: 1.16 KB
/home/getspomw/.trash/vendor/symfony/console/Exception/CommandNotFoundException.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\Exception;

/**
 * Represents an incorrect command name typed in the console.
 *
 * @author Jérôme Tamarelle <jerome@tamarelle.net>
 */
class CommandNotFoundException extends \InvalidArgumentException implements ExceptionInterface
{
    /**
     * @param string          $message      Exception message to throw
     * @param string[]        $alternatives List of similar defined names
     * @param int             $code         Exception code
     * @param \Throwable|null $previous     Previous exception used for the exception chaining
     */
    public function __construct(
        string $message,
        private array $alternatives = [],
        int $code = 0,
        ?\Throwable $previous = null,
    ) {
        parent::__construct($message, $code, $previous);
    }

    /**
     * @return string[]
     */
    public function getAlternatives(): array
    {
        return $this->alternatives;
    }
}

Directory Contents

Dirs: 0 × Files: 10

Name Size Perms Modified Actions
1.16 KB lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
3.22 KB lrw-r--r-- 2026-04-19 13:54:05
Edit Download
425 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
446 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
517 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
426 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
494 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
474 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
849 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download
430 B lrw-rw-rw- 2025-09-17 06:53:23
Edit Download

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