gotem_content_moderation-1.1.6-alpha1/src/Moderation/ModerationInterface.php
src/Moderation/ModerationInterface.php
<?php
namespace Drupal\gotem\Moderation;
/**
* Interface for moderation services.
*/
interface ModerationInterface {
/**
* Moderates the given text.
*
* @param string $text
* The text to moderate.
*
* @return array|null
* The moderation result or NULL on failure.
*/
public function moderateText(string $text): ?array;
}
