diff --git a/lib/private/db/migrationexception.php b/lib/private/db/migrationexception.php index f3c908aa40a13a6c040cdf658701731a0b5accdf..2afec9700a004f25860d9535709bfdd0f2928a08 100644 --- a/lib/private/db/migrationexception.php +++ b/lib/private/db/migrationexception.php @@ -13,7 +13,7 @@ class MigrationException extends \Exception { private $table; public function __construct($table, $message) { - $this->$table = $table; + $this->table = $table; parent::__construct($message); }