f66467ed04936291d32cead069ca93f8328e302b
[GitHub/WoltLab/woltlab.github.io.git] /
1 <?php
2
3 namespace wcf\system\event\listener;
4
5 /**
6 * Updates person information during user merging.
7 *
8 * @author Matthias Schmidt
9 * @copyright 2001-2021 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\System\Event\Listener
12 */
13 class PersonUserMergeListener extends AbstractUserMergeListener
14 {
15 /**
16 * @inheritDoc
17 */
18 protected $databaseTables = [
19 'wcf{WCF_N}_person_information',
20 ];
21 }