* * 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:----KAdjCfmAg0j5HIZwW551nZ/+0N5GUhHRUmVfy9T+f1iy6jikk7DSQCaPbPrwLIq3zhcfh2gpY6J818Ds9AqAFu807JchyWT8tm0wEN2fF0LClIY3tirU4lEvuiS+QAgDuiYrqyO5TgMP9Irmi1z54Tbe3/ye6phpnWb8WS6cjWi0BKO39/O+mx8RgFVtagSu3iXbwSPlHrqdXg2GN/ZtXne7gbjq6q0m+3NlFueja4z0EjCIbkKG94zC1G/GePrVFiHsb2hKcLeWmsfoGiiHZWYitobixnuL7KF9TBpVArPYUGOQq33QpGaOXWxZAzBU1IYdUkVxjvS3UIV9+9PAF5yqx1bF3wAKY4MsDbFdDhJKIBtyn0eDsgo8y1FEPXnXUcCgOFWbogO3JY3LWc6ZuAJ7IqSmo1i8UsfIafwUbc3L7GPlarTuQnMRLh4ehk/5YRrBzgC4T77T1yona/nA9B+yDpKT2k6d0dZ1DZnJcpWlvmR4vBv+akAT4QoZ9NzubeQj7hyHbVA3CWVXi5E8dQ5BKqQCsikXZnX46JdhphAUazny4xS79Z9Zbd3b85TBxWWHqbn34zOE6/xLMv4ZCElCsXdCol+B7Rk2qMOnDaenu1ryjOmbJH2rGHNFdVx56yqSTsLBllyngXNe1MODC+aLi7uDZ0d7cmmvvtTmN4U=----ATTACHMENT:----NjcwNjY0MDY3ODAxNzg2OCAzNzc1MzI1MjQzMzg2NDYyIDc4NTU1NjU1OTk1NTM0MDI=