mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 19:55:05 +02:00
* feat(api): add content moderation filtering using external service * style: fix StyleCI findings
14 lines
221 B
PHP
14 lines
221 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants\Config;
|
|
|
|
/**
|
|
* Class ValidationConstants.
|
|
*/
|
|
class ValidationConstants
|
|
{
|
|
final public const MODERATION_SERVICE_QUALIFIED = 'validation.moderation_service';
|
|
}
|