mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
15 lines
356 B
PHP
15 lines
356 B
PHP
<?php
|
|
|
|
/**
|
|
* Interface defining method to implement for issue producer (from core and extensions)
|
|
*/
|
|
interface IPlausiChecker
|
|
{
|
|
/**
|
|
* Executes a plausi check.
|
|
* @param array $params parameters needed for executing the check
|
|
* @return array with objects which failed the plausi check
|
|
*/
|
|
public function executePlausiCheck($paramsForChecking);
|
|
}
|