Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Last active January 5, 2019 20:12
Show Gist options
  • Save joaorobertopb/6ec483a4aadea047e14fef5a152f0d53 to your computer and use it in GitHub Desktop.
Save joaorobertopb/6ec483a4aadea047e14fef5a152f0d53 to your computer and use it in GitHub Desktop.
Exemplo de código PHP com alto nível de acoplamento.
<?php
use MySQLConnection;
class PasswordReminder
{
private $dbConnection;
public function __construct()
{
$this->dbConnection = new MySQLConnection();
}
// Faz alguma coisa
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment