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

ProviderNotFoundException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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