| Total Complexity | 8 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class Mailcode_Commands_Command_ElseIf extends Mailcode_Commands_Command_Type_Sibling |
||
| 22 | { |
||
| 23 | public function getName() : string |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getLabel() : string |
||
| 29 | { |
||
| 30 | return t('ELSE IF condition'); |
||
| 31 | } |
||
| 32 | |||
| 33 | public function supportsType(): bool |
||
| 34 | { |
||
| 35 | return true; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function requiresParameters(): bool |
||
| 39 | { |
||
| 40 | return true; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function generatesContent(): bool |
||
| 44 | { |
||
| 45 | return false; |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getSupportedTypes() : array |
||
| 53 | ); |
||
| 54 | } |
||
| 55 | |||
| 56 | protected function getValidations(): array |
||
| 59 | } |
||
| 60 | |||
| 61 | public function getParentName() : string |
||
| 64 | } |
||
| 65 | } |
||
| 66 |