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