mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 06:51:08 +02:00
[feature/migrations] getParameters function for migration exception
PHPBB3-11351
This commit is contained in:
@@ -52,4 +52,14 @@ class phpbb_db_migration_exception extends \Exception
|
|||||||
{
|
{
|
||||||
return $this->message . ': ' . var_export($this->parameters, true);
|
return $this->message . ': ' . var_export($this->parameters, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the parameters
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getParameters()
|
||||||
|
{
|
||||||
|
return $this->parameters;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user