Seditio Source
Root |
./othercms/xenForo 2.2.8/src/XF/Spam/Checker/ContentCheckerInterface.php
<?php

namespace XF\Spam\Checker;

interface
ContentCheckerInterface
{
    public function
check(\XF\Entity\User $user, $message, array $extraParams = []);

    public function
submitSpam($contentType, $contentIds);

    public function
submitHam($contentType, $contentIds);
}