コード例 #1
0
ファイル: Email.php プロジェクト: iteaoffice/general
 /**
  * @param Selection $selection
  * @param ContactService $contactService
  */
 public function addSelection(Selection $selection, ContactService $contactService)
 {
     foreach ($contactService->findContactsInSelection($selection) as $contact) {
         $this->addTo($contact);
     }
 }