Completed
Push — master ( ba97ae...9147af )
by Patrick
01:45
created

VolunteerEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
class VolunteerEvent extends VolunteerObject
3
{
4
    public function __construct($departmentID, $dbData = null)
5
    {
6
        parent::__construct($departmentID, $dbData, 'events', '_id');
7
    }
8
}
9