mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
24 lines
563 B
PHP
24 lines
563 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\WebSub\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class WebSub extends BaseConfig
|
|
{
|
|
/**
|
|
* --------------------------------------------------------------------------
|
|
* Hubs to ping
|
|
* --------------------------------------------------------------------------
|
|
* @var string[]
|
|
*/
|
|
public array $hubs = [
|
|
'https://pubsubhubbub.appspot.com/',
|
|
'https://pubsubhubbub.superfeedr.com/',
|
|
'https://websubhub.com/hub',
|
|
'https://switchboard.p3k.io/',
|
|
];
|
|
}
|