Last active
October 22, 2015 07:26
-
-
Save harunyasar/3058d9dc1a27d5e6096a to your computer and use it in GitHub Desktop.
Email Sender sınıfı için Tight Coupling örneği
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class EmailSender { | |
private $db; | |
public function __construct(DatabaseConnection $db) | |
{ | |
$this->db = $db; | |
} | |
public function send($id, $subject, $message) | |
{ | |
$user = $this->db->findUserById($id); | |
// E-Posta gönderme işlemi | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment