1
0
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:
Oliver Schramm
2016-08-11 15:37:53 +02:00
parent 6078bae7f8
commit b00a39b9ad
2 changed files with 14 additions and 8 deletions

View File

@@ -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.
*