Failed Conditions
Push — exceptions ( 64d080...7fc4df )
by Michael
15:07
created

ConversionException::conversionFailed()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 2
nc 2
nop 2
crap 2
1
<?php
2
3
namespace Doctrine\DBAL\Types;
4
5
/**
6
 * Conversion Exception is thrown when the database to PHP conversion fails.
7
 *
8
 * @link   www.doctrine-project.org
9
 * @since  2.0
10
 * @author Benjamin Eberlei <[email protected]>
11
 * @author Guilherme Blanco <[email protected]>
12
 * @author Jonathan Wage <[email protected]>
13
 * @author Roman Borschel <[email protected]>
14
 */
15
class ConversionException extends \Doctrine\DBAL\DBALException
16
{
17
}
18