This commit is contained in:
Robin Appelman 2014-06-03 12:00:39 +02:00
parent 82b982a4eb
commit 4429b54ce4
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class MigrationException extends \Exception {
private $table;
public function __construct($table, $message) {
$this->$table = $table;
$this->table = $table;
parent::__construct($message);
}