mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
23 lines
371 B
PHP
23 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,
|
|
],
|
|
];
|
|
}
|
|
}
|