mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
22 lines
633 B
PHP
22 lines
633 B
PHP
<?php
|
|
|
|
/**
|
|
* Interface defining method to implement for issue producer (from core and extensions)
|
|
*/
|
|
interface IIssueExistsChecker
|
|
{
|
|
/**
|
|
* Checks if an issue exists.
|
|
* @param array $params parameters needed for issue detection
|
|
* @return object with success(true) if issue exists, success(false) otherwise
|
|
*/
|
|
public function checkIfIssueExists($paramsForChecking);
|
|
|
|
/**
|
|
* Produces an issue.
|
|
* @param array $params parameters needed for issue detection
|
|
* @return object with success(true) if issue exists, success(false) otherwise
|
|
*/
|
|
//public function produceIssue($person_id, $oe_kurzbz, $paramsForProducing);
|
|
}
|