for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleDIC\Dummy;
class Database
{
/**
* @var string
*/
private $db;
private $username;
private $password;
* Database constructor.
*
* @param string $db
* @param string $username
* @param string $password
public function __construct($db, $username, $password)
$this->db = $db;
$this->username = $username;
$this->password = $password;
}