for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maphper\Lib;
class Query {
private $sql;
private $args = [];
public function __construct($sql, $args = null) {
$this->sql = $sql;
$this->args = $args;
}
public function getSql() {
return $this->sql;
public function getArgs() {
return $this->args;