Completed
Push — trunk ( 1f2f20...9c1015 )
by SuperNova.WS
04:43
created

ActiveRecord::dbLastInsertId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by Gorlum 12.06.2017 14:41
4
 */
5
6
namespace DBAL;
7
8
/**
9
 * Class ActiveRecord
10
 *
11
 * Represent table in DB/one record in DB. Breaking SRP with joy!
12
 *
13
 * @property int|string $id - Record ID name would be normalized to 'id'
14
 *
15
 * @package DBAL
16
 */
17
class ActiveRecord extends ActiveRecordAbstractIndexed {
18
19
}
20