| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | public static function toFormParams(List_ $list) |
||
| 8 | { |
||
| 9 | return [ |
||
| 10 | 'name' => $list->getName(), |
||
| 11 | 'remarks' => $list->getRemarks(), |
||
| 12 | 'subscribe_notification_email' => $list->getSubscribeNotificationEmail(), |
||
| 13 | 'unsubscribe_notification_email' => $list->getUnsubsribeNotificationEmail(), |
||
| 14 | ]; |
||
| 15 | } |
||
| 16 | } |