Skip to content

Instantly share code, notes, and snippets.

@harunyasar
Last active October 22, 2015 07:26
Show Gist options
  • Save harunyasar/3058d9dc1a27d5e6096a to your computer and use it in GitHub Desktop.
Save harunyasar/3058d9dc1a27d5e6096a to your computer and use it in GitHub Desktop.
Email Sender sınıfı için Tight Coupling örneği
<?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