Total Complexity | 7 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Mailcode_Commands_Command_For extends Mailcode_Commands_Command_Type_Opening |
||
22 | { |
||
23 | public function getName() : string |
||
24 | { |
||
25 | return 'for'; |
||
26 | } |
||
27 | |||
28 | public function getLabel() : string |
||
29 | { |
||
30 | return t('FOR loop'); |
||
31 | } |
||
32 | |||
33 | public function supportsType(): bool |
||
36 | } |
||
37 | |||
38 | public function requiresParameters(): bool |
||
39 | { |
||
40 | return true; |
||
41 | } |
||
42 | |||
43 | protected function getValidations() : array |
||
44 | { |
||
45 | return array(); |
||
46 | } |
||
47 | |||
48 | public function generatesContent() : bool |
||
51 | } |
||
52 | |||
53 | public function getSiblings() : array |
||
54 | { |
||
56 | } |
||
57 | } |
||
58 |