1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-05-05 02:28:16 +03:00

_execute() now takes zero arguments.

This commit is contained in:
Michael 2016-04-04 14:15:32 +10:00
parent d5244b9e72
commit eb34d15738

View file

@ -65,8 +65,10 @@ class Task_Migrations_Run extends Minion_Task {
*
* @param array $options Configuration to use
*/
protected function _execute(array $options)
protected function _execute()
{
$options = $this->_options;
$groups = $options['group'];
$target = $options['to'];