aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-02-09 21:10:56 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-02-09 21:10:56 -0600
commitf18b096df945648aa3ecc2b8b914869871b1823f (patch)
tree86ef44d61b5ee6740f50a62441bd28ea09b05e01
parentf409697137b0b1d01b663bb81d12f6179c3922e3 (diff)
downloadforums-f18b096df945648aa3ecc2b8b914869871b1823f.tar
forums-f18b096df945648aa3ecc2b8b914869871b1823f.tar.gz
forums-f18b096df945648aa3ecc2b8b914869871b1823f.tar.bz2
forums-f18b096df945648aa3ecc2b8b914869871b1823f.tar.xz
forums-f18b096df945648aa3ecc2b8b914869871b1823f.zip
[feature/migrations] getParameters function for migration exception
PHPBB3-11351
-rw-r--r--phpBB/includes/db/migration/exception.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/db/migration/exception.php b/phpBB/includes/db/migration/exception.php
index ffdcd97780..b3abcdb5e5 100644
--- a/phpBB/includes/db/migration/exception.php
+++ b/phpBB/includes/db/migration/exception.php
@@ -52,4 +52,14 @@ class phpbb_db_migration_exception extends \Exception
{
return $this->message . ': ' . var_export($this->parameters, true);
}
+
+ /**
+ * Get the parameters
+ *
+ * @return array
+ */
+ public function getParameters()
+ {
+ return $this->parameters;
+ }
}