DBDiff\DB\Data\DistTableData::getDataDiff PHP Method

getDataDiff() public method

public getDataDiff ( $table, $key )
    public function getDataDiff($table, $key)
    {
        $sourceIterator = $this->getIterator('source', $table);
        $targetIterator = $this->getIterator('target', $table);
        $differ = new ArrayDiff($key, $sourceIterator, $targetIterator);
        return $differ->getDiff($table);
    }