Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace MediaWiki\Extension\MediaModeration\PhotoDNA;
4
5use ArchivedFile;
6use File;
7use StatusValue;
8
9interface IMediaModerationPhotoDNAServiceProvider {
10
11    /**
12     * @param File|ArchivedFile $file
13     * @return StatusValue
14     *   @see MediaModerationPhotoDNAResponseHandler::createStatusFromResponse() for details on the StatusValue.
15     */
16    public function check( $file ): StatusValue;
17
18}