Doctrine\DBAL\Migrations\Version::addQueryParams PHP Method

addQueryParams() private method

private addQueryParams ( mixed[] $params, string[] $types )
$params mixed[] Array of prepared statement parameters
$types string[] Array of the types of each statement parameters
    private function addQueryParams($params, $types)
    {
        $index = count($this->sql) - 1;
        $this->params[$index] = $params;
        $this->types[$index] = $types;
    }