add a getter for the table

This commit is contained in:
Robin Appelman 2014-05-07 12:53:42 +02:00
parent c6053b2830
commit 397a763c49
1 changed files with 7 additions and 0 deletions

View File

@ -16,4 +16,11 @@ class MigrationException extends \Exception {
$this->$table = $table;
parent::__construct($message);
}
/**
* @return string
*/
public function getTable() {
return $this->table;
}
}