Piwik\Updater\Migration\Db\BatchInsert::__construct PHP Метод

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

public __construct ( string $table, array $columnNames, array $values, boolean $throwException, string $charset )
$table string
$columnNames array
$values array
$throwException boolean
$charset string
    public function __construct($table, $columnNames, $values, $throwException, $charset)
    {
        $this->table = $table;
        $this->columnNames = $columnNames;
        $this->values = $values;
        $this->throwException = (bool) $throwException;
        $this->charset = $charset;
    }