Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: implements Pinq\Providers\DSL\Compilation\IQueryCompilation
Beispiel #1
0
 public function __construct(PDO $connection, TableSourceInfo $table, ParameterCollection $parameters)
 {
     parent::__construct($parameters);
     $this->table = $table;
     $this->tableName = $table->getName();
     $this->connection = $connection;
     $this->expressionCompiler = new ExpressionCompiler($this);
 }
Beispiel #2
0
 public function __construct($english = '')
 {
     parent::__construct(new Parameters\ParameterCollection());
     $this->english = $english;
 }