| Total Complexity | 7 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class Mailcode_Commands_Command_Else extends Mailcode_Commands_Command_Type_Sibling |
||
| 22 | { |
||
| 23 | public function getName() : string |
||
| 24 | { |
||
| 25 | return 'else'; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getLabel() : string |
||
| 29 | { |
||
| 30 | return t('ELSE condition'); |
||
| 31 | } |
||
| 32 | |||
| 33 | public function supportsType(): bool |
||
| 34 | { |
||
| 35 | return false; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function requiresParameters(): bool |
||
| 39 | { |
||
| 40 | return false; |
||
| 41 | } |
||
| 42 | |||
| 43 | public function generatesContent(): bool |
||
| 46 | } |
||
| 47 | |||
| 48 | protected function getValidations(): array |
||
| 51 | } |
||
| 52 | |||
| 53 | public function getParentName() : string |
||
| 56 | } |
||
| 57 | } |
||
| 58 |