Passed
Push — feat/use-provider ( 6f868a )
by Chema
04:35
created

ProviderNotFoundException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 10
rs 10
c 0
b 0
f 0
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\Provider;
6
7
use Gacela\Framework\ClassResolver\ClassResolverExceptionTrait;
8
use RuntimeException;
9
10
final class ProviderNotFoundException 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)
18
    {
19
        parent::__construct($this->buildMessage($caller, 'Provider'));
20
    }
21
}
22