Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
InvalidContentTypeException
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getStatusCode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\RestApi\Exceptions;
3
4use Apie\Core\Exceptions\ApieException;
5use Apie\Core\Exceptions\HttpStatusCodeException;
6
7class InvalidContentTypeException extends ApieException implements HttpStatusCodeException
8{
9    public function __construct(string $contentType)
10    {
11        parent::__construct(sprintf('Invalid content-type header: "%s"', $contentType));
12    }
13
14    public function getStatusCode(): int
15    {
16        return 415;
17    }
18}