mirror of
				https://github.com/Icinga/icingaweb2.git
				synced 2025-11-03 20:54:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			713 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			713 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Icinga\Exception\Http;
 | 
						|
 | 
						|
/**
 | 
						|
 * Exception thrown if the HTTP method is not allowed
 | 
						|
 */
 | 
						|
class HttpMethodNotAllowedException extends HttpException
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Allowed HTTP methods
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $allowedMethods;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the allowed HTTP methods
 | 
						|
     *
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    public function getAllowedMethods()
 | 
						|
    {
 | 
						|
        return $this->allowedMethods;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Set the allowed HTTP methods
 | 
						|
     *
 | 
						|
     * @param   string $allowedMethods
 | 
						|
     *
 | 
						|
     * @return  $this
 | 
						|
     */
 | 
						|
    public function setAllowedMethods($allowedMethods)
 | 
						|
    {
 | 
						|
        $this->allowedMethods = (string) $allowedMethods;
 | 
						|
        return $this;
 | 
						|
    }
 | 
						|
}
 |