Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / page / content / PageContentAction.class.php
1 <?php
2
3 namespace wcf\data\page\content;
4
5 use wcf\data\AbstractDatabaseObjectAction;
6
7 /**
8 * Executes page content related actions.
9 *
10 * @author Marcel Werk
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data\Page\Content
14 * @since 3.0
15 *
16 * @method PageContentEditor[] getObjects()
17 * @method PageContentEditor getSingleObject()
18 */
19 class PageContentAction extends AbstractDatabaseObjectAction
20 {
21 /**
22 * @inheritDoc
23 */
24 protected $className = PageContentEditor::class;
25 }