Total Complexity | 7 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
2 | class VolunteerDepartment extends VolunteerObject |
||
3 | { |
||
4 | public function __construct($departmentID, $dbData = null) |
||
5 | { |
||
6 | parent::__construct($departmentID, $dbData, 'departments', 'departmentID'); |
||
7 | } |
||
8 | |||
9 | public function getLeadEmails() |
||
24 | } |
||
25 | |||
26 | public static function getPrivateDepartments() |
||
42 | } |
||
43 | } |
||
44 |