mirror of
https://github.com/friendica/friendica
synced 2025-05-02 18:24:23 +02:00
19 lines
358 B
PHP
19 lines
358 B
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
use Friendica\Core\Hook;
|
|
use Friendica\DI;
|
|
|
|
Class ForkHook
|
|
{
|
|
public static function execute($name, $hook, $data)
|
|
{
|
|
Hook::callSingle($name, $hook, $data);
|
|
}
|
|
}
|