Merge branch '3.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / IAJAXInvokeAction.class.php
CommitLineData
568ed822
AE
1<?php
2namespace 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
b2aa772d 9 * classes leads to a potential breach of security and unforeseen side-effects.
568ed822
AE
10 *
11 * @author Alexander Ebert
c839bd49 12 * @copyright 2001-2018 WoltLab GmbH
568ed822 13 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
e71525e4 14 * @package WoltLabSuite\Core\System
568ed822
AE
15 */
16interface IAJAXInvokeAction { }