for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fyuze\Database;
class Query
{
/**
* @var Db
*/
protected $db;
* @var string
protected $table;
* @param DB $database
* @param $table
public function __construct(DB $database, $table)
$this->db = $database;
$this->table = $table;
}