MemberExtension
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 8
wmc 0
1
<?php
2
3
namespace SilverStripe\RealMe\Extension;
4
5
use SilverStripe\ORM\DataExtension;
6
7
/**
8
 * Class MemberExtension
9
 */
10
class MemberExtension extends DataExtension
11
{
12
    private static $db = array(
0 ignored issues
show
introduced by
The private property $db is not used, and could be removed.
Loading history...
13
        "RealmeSPNameID" => "Varchar(35)",
14
    );
15
16
    private static $indexes = array(
0 ignored issues
show
introduced by
The private property $indexes is not used, and could be removed.
Loading history...
17
        "RealmeSPNameID" => true
18
    );
19
}
20