Skip to content

Commit

Permalink
rename array unique function
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjgreen committed Sep 27, 2015
1 parent eebb7b1 commit aabd2c9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/Definition.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php namespace DbSync;

class Definition {

private $columns;

private $primaryKey;

public function __construct($columns, $primaryKey)
{
$this->columns = $columns;

$this->primaryKey = $primaryKey;
}

public function getPrimaryKey()
{
return $this->primaryKey;
}

public function getColumns()
{
return $this->columns;
}
}

0 comments on commit aabd2c9

Please sign in to comment.