interface class constants

This commit is contained in:
Steffen Schröder 2013-12-14 23:27:48 +01:00
parent bebda8f69a
commit 7f4b45286a
2 changed files with 9 additions and 1 deletions

View File

@ -4,10 +4,14 @@ namespace ManiaControl\Callbacks;
/**
* Interface for CallbackListener
*
*
* @author steeffeen & kremsy
*/
interface CallbackListener {
/**
* Constants
*/
const CALLBACKLISTENER_INTERFACE = __CLASS__;
}
?>

View File

@ -8,6 +8,10 @@ namespace ManiaControl\Manialinks;
* @author steeffeen & kremsy
*/
interface ManialinkPageAnswerListener {
/**
* Constants
*/
const MANIALINKPAGEANSWERLISTENER_INTERFACE = __CLASS__;
}
?>