mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 03:04:09 +02:00
[ticket/14742] Make $last_run_migration protected
PHPBB3-14742
This commit is contained in:
@@ -80,7 +80,7 @@ class migrator
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $last_run_migration = false;
|
||||
protected $last_run_migration = false;
|
||||
|
||||
/**
|
||||
* The output handler. A null handler is configured by default.
|
||||
@@ -160,6 +160,19 @@ class migrator
|
||||
$this->db->sql_return_on_error(false);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an array with information about the last migration run.
|
||||
*
|
||||
* The array contains 'name', 'class' and 'state'. 'effectively_installed' is set
|
||||
* and set to true if the last migration was effectively_installed.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_last_run_migration()
|
||||
{
|
||||
return $this->last_run_migration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the list of available migration class names to the given array.
|
||||
*
|
||||
|
Reference in New Issue
Block a user