| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 22 | class MethodNotAllowedException extends Exception |
||
| 23 | { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Gets allowed methods |
||
| 27 | * |
||
| 28 | * @return string[] |
||
| 29 | */ |
||
| 30 | 5 | public function getAllowedMethods() : array |
|
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Gets joined allowed methods |
||
| 37 | * |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | 1 | public function getJoinedAllowedMethods() : string |
|
| 45 |