| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | class APPGMembershipAssignment extends BaseModel { |
||
| 15 | public APPGMembershipList $is_officer_of; |
||
| 16 | public APPGMembershipList $is_ordinary_member_of; |
||
| 17 | |||
| 18 | public function is_an_officer() { |
||
| 19 | return $this->is_officer_of->count() > 0; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function is_a_member() { |
||
| 24 | } |
||
| 25 | } |
||
| 26 |