b7870b51c1ccbd0773ebcf90e448615bf44ccd61
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\user\authentication\failure;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit user authentication failures.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2016 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\User\Authentication\Failure
12 *
13 * @method UserAuthenticationFailure getDecoratedObject()
14 * @mixin UserAuthenticationFailure
15 */
16 class UserAuthenticationFailureEditor extends DatabaseObjectEditor {
17 /**
18 * @inheritDoc
19 */
20 protected static $baseClass = UserAuthenticationFailure::class;
21 }