Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/laminas/laminas-db/src/Sql/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-db/src/Sql/InsertIgnore.php

<?php

namespace Laminas\Db\Sql;

class InsertIgnore extends Insert
{
    /** @var array Specification array */
    protected $specifications = [
        self::SPECIFICATION_INSERT => 'INSERT IGNORE INTO %1$s (%2$s) VALUES (%3$s)',
        self::SPECIFICATION_SELECT => 'INSERT IGNORE INTO %1$s %2$s %3$s',
    ];
}