InvalidArgumentException
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 2
ccs 1
cts 1
cp 1
wmc 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Soupmix\Cache\Exception;
6
7
use Psr\SimpleCache\InvalidArgumentException as PsrInvalidArgumentException;
8
9
class InvalidArgumentException extends \InvalidArgumentException implements PsrInvalidArgumentException
10 1
{
11
}
12