mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-28 17:39:28 +00:00
16 lines
441 B
PHP
16 lines
441 B
PHP
<?php
|
|
|
|
/**
|
|
* Interface defining method to implement for issue producer (from core and extensions)
|
|
*/
|
|
interface IIssueExistsChecker
|
|
{
|
|
/**
|
|
* Checks if an issue exists.
|
|
* Classes for checking if a certain issue exists implement this method.
|
|
* @param array $params parameters needed for issue detection
|
|
* @return object with success(true) if issue exists, success(false) otherwise
|
|
*/
|
|
public function checkIfIssueExists($params);
|
|
}
|