Skip to content

Instantly share code, notes, and snippets.

@joaorobertopb
Last active January 5, 2019 19:05
Show Gist options
  • Save joaorobertopb/f847e00604996d1a7a7602effa602d79 to your computer and use it in GitHub Desktop.
Save joaorobertopb/f847e00604996d1a7a7602effa602d79 to your computer and use it in GitHub Desktop.
Exemplo de código PHP com injeção de dependência via construtor.
<?php
use MySQLConnection;
class PasswordReminder
{
private $dbConnection;
public function __construct(MySQLConnection $dbConnection)
{
$this->dbConnection = $dbConnection;
}
// Faz alguma coisa
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment