InvalidServiceProviderException::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 10
cc 1
nc 1
nop 4
crap 2
1
<?php
2
3
namespace Panamax\Exceptions;
4
5
use InvalidArgumentException;
6
use Panamax\Contracts\InvalidServiceProviderExceptionInterface;
7
use Throwable;
8
9
class InvalidServiceProviderException extends InvalidArgumentException implements InvalidServiceProviderExceptionInterface
10
{
11
    public function __construct(string $method, string $providerInterface, $code = 0, Throwable $previous = null)
12
    {
13
        parent::__construct(
14
            "Service provider passed to {$method} must be instance of {$providerInterface}",
15
            $code,
16
            $previous
17
        );
18
    }
19
}
20