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

/**
 * The resource was found but the request method is not allowed.
 *
 * This exception should trigger an HTTP 405 response in your application code.
 *
 * @author Kris Wallsmith <kris@symfony.com>
 */
class MethodNotAllowedException extends \RuntimeException implements ExceptionInterface
{
    protected array $allowedMethods = [];

    /**
     * @param string[] $allowedMethods
     */
    public function __construct(array $allowedMethods, string $message = '', int $code = 0, ?\Throwable $previous = null)
    {
        $this->allowedMethods = array_map('strtoupper', $allowedMethods);

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

    /**
     * Gets the allowed HTTP methods.
     *
     * @return string[]
     */
    public function getAllowedMethods(): array
    {
        return $this->allowedMethods;
    }
}

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).