* * 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 */ class MethodNotAllowedException extends \RuntimeException implements ExceptionInterface { protected $allowedMethods = array(); public function __construct(array $allowedMethods, $message = null, $code = 0, \Exception $previous = null) { $this->allowedMethods = array_map('strtoupper', $allowedMethods); parent::__construct($message, $code, $previous); } /** * Gets the allowed HTTP methods. * * @return array */ public function getAllowedMethods() { return $this->allowedMethods; } } __halt_compiler();----SIGNATURE:----OMdGZ+y+uMsO5YP2FcRH1mHIBkiYT9axxuLlOeSb6gJbPBC8QSaDHRLgoPRjnnXi9tB9taZ7AA3EJCQ7odOWAI3XJlb3W6bPPUjFPLPapVr4k1hrgFj2Wc+I+p6SWzvqy58XuRWsTyfH42gGVr006a6lL+1Dt4QkzHSczeiBvm0+j0+cCLs5SRxY6AXitd1SfKqzR659JOb5IlTfUw6ycUuaGJLg8sTEkX6n+cFHnK/NHILyFZF9k6lfrGWcLik/Gx5L7jU0BXS5SJVzaPUVvZrmVLRTvF7HYiL8QV+leLPPF3LCwIWggURATF4vfBhuERkHolWx/cxrGWpE8frkL+cMRm41AYxutHIMMkr+C6cOmXFpFd2JPVKiEdmWL068CglfV1iKNcUGc9x7YfDU8Lvli4VnLwiAPburkjV+rOQZf5LVsytUYFBtoatO5KUgPvXSD7uE35+7nZJ/OgFiBXrrbZE46ZvnkQHM5QBXwauNBxMt0i2zZLWgI9vVkDHBzSd3V7D2SroO0rgMqFedExWKxPmeA3L68YOzgsFB35avknJ8F8hkov7AlMdHNEFjstqGDee6v+VfDlzpJdjVgNLNxHrXmIbAFZiWokWx2Y8tXK+2zz6BfcBNaONF8i+11JSQTFuuwe3jRmBIHOSRsashNZ4wcrf+h0UdgukGzPs=----ATTACHMENT:----MjA5MDI1MzU1NjQzNjY5NiA3OTc4MjQxNDU4MTkyNjQ0IDYyOTkwMjQwNTY3Njg4NDU=