Merge pull request #5989 from WoltLab/wsc-rpc-api-const
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / IAJAXInvokeAction.class.php
CommitLineData
568ed822 1<?php
a9229942 2
568ed822
AE
3namespace wcf\system;
4
5/**
6 * Default interface for AJAX-based method calls.
a9229942 7 *
568ed822
AE
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
b2aa772d 10 * classes leads to a potential breach of security and unforeseen side-effects.
a9229942
TD
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>
568ed822 15 */
a9229942
TD
16interface IAJAXInvokeAction
17{
18}