| Total Complexity | 2 | 
| Total Lines | 16 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 23 | class Mailcode_Commands_Command_If_ListContains extends Mailcode_Commands_Command_If_Contains implements Mailcode_Interfaces_Commands_ListVariables, Mailcode_Interfaces_Commands_ListPropertyVariable | ||
| 24 | { | ||
| 25 | use Mailcode_Traits_Commands_ListVariables; | ||
| 26 | use Mailcode_Traits_Commands_Validation_ListPropertyVariable; | ||
| 27 | |||
| 28 | protected function getValidations(): array | ||
| 29 |     { | ||
| 30 | $validations = parent::getValidations(); | ||
| 31 | $validations[] = 'list_property_variable'; | ||
| 32 | |||
| 33 | return $validations; | ||
| 34 | } | ||
| 35 | |||
| 36 | protected function _collectListVariables(Mailcode_Variables_Collection_Regular $collection): void | ||
| 39 | } | ||
| 40 | } | ||
| 41 |