Test Failed
Push — feature/custom-services-v2 ( dde5b5 )
by Chema
08:49
created

CustomServiceNotFoundException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 10
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Gacela\Framework\ClassResolver\CustomService;
6
7
use Gacela\Framework\ClassResolver\ClassResolverExceptionTrait;
8
use RuntimeException;
9
10
final class CustomServiceNotFoundException extends RuntimeException
11
{
12
    use ClassResolverExceptionTrait;
13
14
    /**
15
     * @param object|class-string $caller
0 ignored issues
show
Documentation Bug introduced by
The doc comment object|class-string at position 2 could not be parsed: Unknown type name 'class-string' at position 2 in object|class-string.
Loading history...
16
     */
17
    public function __construct($caller, string $resolvableType)
18
    {
19
        parent::__construct($this->buildMessage($caller, $resolvableType));
20
    }
21
}
22