2013-05-03 18:42:48 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-26 13:37:37 +03:00
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
2013-05-03 18:42:48 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-05-03 18:42:48 +04:00
|
|
|
namespace OC\BackgroundJob\Legacy;
|
|
|
|
|
|
|
|
class RegularJob extends \OC\BackgroundJob\Job {
|
|
|
|
public function run($argument) {
|
2014-06-27 00:39:40 +04:00
|
|
|
if (is_callable($argument)) {
|
|
|
|
call_user_func($argument);
|
|
|
|
}
|
2013-05-03 18:42:48 +04:00
|
|
|
}
|
|
|
|
}
|