Queue and GProbe should now be executed
This commit is contained in:
parent
aac2258bc3
commit
0877cf862c
|
@ -1,7 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* @file include/gprobe.php
|
||||
* @file src/Worker/GProbe.php
|
||||
*/
|
||||
|
||||
namespace Friendica\Worker;
|
||||
|
||||
use Friendica\Core\Cache;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Database\DBM;
|
||||
|
@ -12,7 +15,7 @@ use Friendica\Protocol\PortableContact;
|
|||
require_once 'include/datetime.php';
|
||||
|
||||
class GProbe {
|
||||
function execute($url = '')
|
||||
public static function execute($url = '')
|
||||
{
|
||||
if (empty($url)) {
|
||||
return;
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* @file include/queue.php
|
||||
* @file src/Worker/Queue.php
|
||||
*/
|
||||
|
||||
namespace Friendica\Worker;
|
||||
|
||||
use Friendica\Core\Cache;
|
||||
use Friendica\Core\Config;
|
||||
use Friendica\Core\Worker;
|
||||
|
|
Loading…
Reference in a new issue