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

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

View File

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