Passed
Push — master ( b43b97...c24a8a )
by Julien
07:20
created

Mysql::describeColumns()   A

Complexity

Conditions 6
Paths 5

Size

Total Lines 37
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 20.1953

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 6
eloc 14
c 1
b 0
f 0
nc 5
nop 2
dl 0
loc 37
ccs 4
cts 15
cp 0.2667
crap 20.1953
rs 9.2222
1
<?php
2
3
/**
4
 * This file is part of the Zemit Framework.
5
 *
6
 * (c) Zemit Team <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE.txt
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Zemit\Db\Adapter\Pdo;
13
14
use Phalcon\Db\Column;
15
16
class Mysql extends \Phalcon\Db\Adapter\Pdo\Mysql
17
{
18
}
19