2018-02-06 17:52:36 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-02-06 17:52:36 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-21 01:15:02 -04:00
|
|
|
use Friendica\Core\Hook;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2018-02-06 17:52:36 -05:00
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
Class ForkHook
|
|
|
|
{
|
|
|
|
public static function execute($name, $hook, $data)
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2018-02-06 17:52:36 -05:00
|
|
|
|
2018-10-21 01:15:02 -04:00
|
|
|
Hook::callSingle($a, $name, $hook, $data);
|
2018-02-06 17:52:36 -05:00
|
|
|
}
|
|
|
|
}
|