1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-16 15:01:08 +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 * @param array $options Configuration to use
*/ */
protected function _execute(array $options) protected function _execute()
{ {
$options = $this->_options;
$groups = $options['group']; $groups = $options['group'];
$target = $options['to']; $target = $options['to'];