Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
common_exception_MethodNotAllowed
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getAllowedMethods
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getUserMessage
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 *
21 * Content type accepted can't be satisfied
22 * @access public
23 * @author Gyula Szucs, <gyula@taotesting.com>
24 * @package generis
25
26 */
27class common_exception_MethodNotAllowed extends common_exception_BadRequest
28{
29    /**
30     * @var string[]|null
31     */
32    protected $allowedMethods;
33
34    /**
35     * @param string|null $message
36     * @param int $code
37     * @param string[]|null $allowedMethods
38     */
39    public function __construct($message = null, $code = 0, array $allowedMethods = null)
40    {
41        parent::__construct($message, $code);
42        $this->allowedMethods = $allowedMethods;
43    }
44
45    /**
46     * @return string[]|null
47     */
48    public function getAllowedMethods()
49    {
50        return $this->allowedMethods;
51    }
52
53    public function getUserMessage()
54    {
55        return __("Request method is not allowed.");
56    }
57}