Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends Compiler, implements Pinq\Providers\DSL\Compilation\Compilers\IScopeCompiler
コード例 #1
0
 public function __construct(Queries\IScope $scope, Select $select)
 {
     parent::__construct($scope, $select);
     $this->compilation = $select;
     $this->compilation->sql = "SELECT * FROM {$this->compilation->tableName}";
 }
コード例 #2
0
ファイル: ScopeCompiler.php プロジェクト: timetoogo/pinq
 public function __construct(QueryCompilation $compilation, Queries\IScope $scope)
 {
     parent::__construct($scope, $compilation);
 }