for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maketok\DataMigration\Unit\Type;
use Maketok\DataMigration\Unit\ImportDbUnitInterface;
abstract class ImportDbUnit extends ImportFileUnit implements ImportDbUnitInterface
{
/**
* @var string
*/
protected $tableName;
protected $tmpTable;
* @var string|string[]
protected $primaryKey;
* {@inheritdoc}
public function getTmpTable()
return $this->tmpTable;
}
public function setTmpTable($tmpTable)
$this->tmpTable = $tmpTable;
public function setTable($tableName)
$this->tableName = $tableName;
public function getTable()
return $this->tableName;
public function getPk()
return $this->primaryKey;
public function setPk($definition)
$this->primaryKey = $definition;