AttendeeExtraFieldOption
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 12
c 0
b 0
f 0
1
<?php
2
/**
3
 * AttendeeExtraFieldOption.php
4
 *
5
 * @author Bram de Leeuw
6
 * Date: 24/05/17
7
 */
8
9
namespace Broarm\EventTickets;
10
11
/**
12
 * Class AttendeeExtraFieldOption
13
 *
14
 * @property string Title
15
 * @property boolean Default
16
 * @property int Sort
17
 * @method AttendeeExtraField Field
18
 * @deprecated deprecated since 1.1.5
19
 */
20
class AttendeeExtraFieldOption extends \DataObject
21
{
22
    private static $db = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
23
        'Title' => 'Varchar(255)',
24
        'Default' => 'Boolean',
25
        'Sort' => 'Int'
26
    );
27
28
    private static $has_one = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
29
        'Field' => 'Broarm\EventTickets\AttendeeExtraField'
30
    );
31
}