for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Keep;
class Mysql extends Driver
{
public function getDsn(): string
return "mysql:host={$this->host};port={$this->port};dbname={$this->dbname};charset={$this->charset}";
}