Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created May 15, 2017 19:43
Show Gist options
  • Save omarkdev/9698a2ea8a69a2ee0990524316529ad2 to your computer and use it in GitHub Desktop.
Save omarkdev/9698a2ea8a69a2ee0990524316529ad2 to your computer and use it in GitHub Desktop.
<?php
class Email {
public $email;
public function __construct($email)
{
if (filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
throw new InvalidEmailException;
}
return $this->email = $email;
}
}
class Order
{
public function notifyBuyer($email)
{
return $this->repository->sendEmail(new Email($email));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment