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

ORMException   A

Complexity

Total Complexity 23

Size/Duplication

Total Lines 227
Duplicated Lines 0 %

Test Coverage

Coverage 71.7%

Importance

Changes 0
Metric Value
dl 0
loc 227
ccs 38
cts 53
cp 0.717
rs 10
c 0
b 0
f 0
wmc 23
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Doctrine\ORM;
6
7
use Doctrine\Common\Cache\Cache as CacheDriver;
8
use Exception;
9
10
/**
11
 * Base exception class for all ORM exceptions.
12
 */
13
interface ORMException extends \Throwable
14
{
15
}
16