Skip to content

Instantly share code, notes, and snippets.

@vanbrabantf
Created April 2, 2021 14:15
Show Gist options
  • Select an option

  • Save vanbrabantf/d56bd3c679d6d48cc2c35746fbd0438b to your computer and use it in GitHub Desktop.

Select an option

Save vanbrabantf/d56bd3c679d6d48cc2c35746fbd0438b to your computer and use it in GitHub Desktop.
<?php
public function sendMail(
CustomerName $customerName,
Email $email
): void
{
$mail = new Mail($customerName->fullName(), $email);
// send mail
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment