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 | |
3 | namespace MediaWiki\Extension\MediaModeration\PhotoDNA; |
4 | |
5 | use ArchivedFile; |
6 | use File; |
7 | use StatusValue; |
8 | |
9 | interface 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 | } |