Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
87.50% covered (warning)
87.50%
7 / 8
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
EntityNotFoundException
87.50% covered (warning)
87.50%
7 / 8
50.00% covered (danger)
50.00%
1 / 2
2.01
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
7 / 7
100.00% covered (success)
100.00%
1 / 1
1
 getStatusCode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2namespace Apie\Core\Exceptions;
3
4use Apie\Core\Entities\EntityInterface;
5use Apie\Core\Identifiers\IdentifierInterface;
6
7final class EntityNotFoundException extends ApieException implements HttpStatusCodeException
8{
9    /**
10     * @param IdentifierInterface<EntityInterface> $identifier
11     */
12    public function __construct(IdentifierInterface $identifier)
13    {
14        parent::__construct(
15            sprintf(
16                "Entity '%s' with id '%s' is not found!",
17                $identifier::getReferenceFor()->getShortName(),
18                $identifier->toNative()
19            )
20        );
21    }
22
23    public function getStatusCode(): int
24    {
25        return 404;
26    }
27}