mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
22 lines
371 B
PHP
22 lines
371 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Fediverse\Config;
|
|
|
|
use Modules\Fediverse\Filters\FediverseFilter;
|
|
|
|
class Registrar
|
|
{
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public static function Filters(): array
|
|
{
|
|
return [
|
|
'aliases' => [
|
|
'fediverse' => FediverseFilter::class,
|
|
],
|
|
];
|
|
}
|
|
}
|