Browse Source

add a getter for the table

tags/v7.0.0alpha2
Robin Appelman 10 years ago
parent
commit
397a763c49
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      lib/private/db/migrationexception.php

+ 7
- 0
lib/private/db/migrationexception.php View File

@@ -16,4 +16,11 @@ class MigrationException extends \Exception {
$this->$table = $table;
parent::__construct($message);
}

/**
* @return string
*/
public function getTable() {
return $this->table;
}
}

Loading…
Cancel
Save