Last active
January 5, 2019 20:12
-
-
Save joaorobertopb/6ec483a4aadea047e14fef5a152f0d53 to your computer and use it in GitHub Desktop.
Exemplo de código PHP com alto nível de acoplamento.
This file contains hidden or 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 | |
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