Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
ActionNotAllowedException
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
2 / 2
3
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
2
 getStatusCode
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\Exceptions;
3
4use Throwable;
5
6final class ActionNotAllowedException extends ApieException implements HttpStatusCodeException
7{
8    public function __construct(?Throwable $previous = null)
9    {
10        parent::__construct($previous ? ('Action not allowed. Reason: ' . $previous->getMessage()) : "Action not allowed!", 0, $previous);
11    }
12
13    public function getStatusCode(): int
14    {
15        return 403;
16    }
17}