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

ConversionException::conversionFailedInvalidType()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 19
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 14
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 19
ccs 14
cts 14
cp 1
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 13
nc 4
nop 3
crap 3
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