PHP 8.3.31
Preview: MissingMandatoryParametersException.php Size: 1.36 KB
/home/getspomw/royalsquad.us/vendor/symfony/routing/Exception/MissingMandatoryParametersException.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\Routing\Exception;

/**
 * Exception thrown when a route cannot be generated because of missing
 * mandatory parameters.
 *
 * @author Alexandre Salomé <alexandre.salome@gmail.com>
 */
class MissingMandatoryParametersException extends \InvalidArgumentException implements ExceptionInterface
{
    private string $routeName = '';
    private array $missingParameters = [];

    /**
     * @param string[] $missingParameters
     */
    public function __construct(string $routeName = '', array $missingParameters = [], int $code = 0, ?\Throwable $previous = null)
    {
        $this->routeName = $routeName;
        $this->missingParameters = $missingParameters;
        $message = \sprintf('Some mandatory parameters are missing ("%s") to generate a URL for route "%s".', implode('", "', $missingParameters), $routeName);

        parent::__construct($message, $code, $previous);
    }

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

    public function getRouteName(): string
    {
        return $this->routeName;
    }
}

Directory Contents

Dirs: 0 × Files: 12

Name Size Perms Modified Actions
13.15 KB lrw-r--r-- 2026-04-26 11:40:08
Edit Download
430 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
385 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
506 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
335 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
1.10 KB lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
1.36 KB lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
465 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
548 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
559 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
501 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download
369 B lrw-rw-rw- 2025-09-17 06:53:20
Edit Download

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