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

ORMException   A

Complexity

Total Complexity 27

Size/Duplication

Total Lines 283
Duplicated Lines 0 %

Test Coverage

Coverage 56.34%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 27
c 1
b 0
f 0
dl 0
loc 283
ccs 40
cts 71
cp 0.5634
rs 10
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