Test Failed
Push — master ( 72bdce...99bbeb )
by Julien
04:45
created

AbstractModel::addPositionValidation()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 20
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 20
ccs 0
cts 13
cp 0
rs 9.9332
c 0
b 0
f 0
cc 2
nc 2
nop 3
crap 6
1
<?php
2
/**
3
 * This file is part of the Zemit Framework.
4
 *
5
 * (c) Zemit Team <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE.txt
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Zemit\Models;
12
13
use Zemit\Db\Column;
14
15
abstract class AbstractModel extends \Zemit\Mvc\Model
16
{
17
    const YES = Column::YES;
18
    const NO = Column::NO;
19
}
20