56fac236d9474f8da93a73fc4bd0bb793cfa26bc
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / IAJAXInvokeAction.class.php
1 <?php
2
3 namespace wcf\system;
4
5 /**
6 * Default interface for AJAX-based method calls.
7 *
8 * You SHOULD NOT implement this interface in generic classes, as each method is entirely
9 * responsible to verify parameters and permissions. Implementing this class in generic
10 * classes leads to a potential breach of security and unforeseen side-effects.
11 *
12 * @author Alexander Ebert
13 * @copyright 2001-2019 WoltLab GmbH
14 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
15 */
16 interface IAJAXInvokeAction
17 {
18 }