Pinq\Providers\DSL\Compilation\QueryCompilation::__construct PHP Метод

__construct() публичный Метод

public __construct ( ParameterCollection $parameters )
$parameters Pinq\Providers\DSL\Compilation\Parameters\ParameterCollection
    public function __construct(ParameterCollection $parameters)
    {
        $this->parameters = $parameters;
    }

Usage Example

Пример #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);
 }
All Usage Examples Of Pinq\Providers\DSL\Compilation\QueryCompilation::__construct