Failed Conditions
Pull Request — master (#6743)
by Grégoire
14:59
created

CacheException   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 42
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0
wmc 4
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\ORM\Cache;
6
7
use Doctrine\ORM\ORMException;
8
9
/**
10
 * Exception for cache.
11
 */
12
interface CacheException extends ORMException
13
{
14
}
15