Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: implements Pinq\Providers\DSL\Compilation\ICompiledQuery
コード例 #1
0
ファイル: Query.php プロジェクト: timetoogo/pinq.demo.sql
 public function __construct($queryString, ParameterRegistry $parameters)
 {
     parent::__construct($parameters);
     $this->queryString = $queryString;
 }
コード例 #2
0
ファイル: CompiledQuery.php プロジェクト: timetoogo/pinq
 public function __construct($english = '')
 {
     parent::__construct(Parameters\ParameterRegistry::none());
     $this->english = $english;
 }