| Current Path : /var/www/html/ajay/phpwebsite-1.8.x/Global/Http/ |
| Current File : /var/www/html/ajay/phpwebsite-1.8.x/Global/Http/MethodNotAllowedResponse.php |
<?php
namespace Http;
/**
* Description
* @author Jeff Tickle <jtickle at tux dot appstate dot edu>
*/
class MethodNotAllowedResponse extends ErrorResponse
{
protected function getHttpResponseCode()
{
return 405;
}
}
?>