Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / user / content / provider / IUserContentProvider.class.php
index 2ed33e06dd19cb4071888fbe719bbb1641926578..c5115af97e6f283a3bdf9aca21b4eebffcb8f43f 100644 (file)
@@ -1,30 +1,33 @@
 <?php
+
 namespace wcf\system\user\content\provider;
+
 use wcf\data\DatabaseObjectList;
 use wcf\data\user\User;
 
 /**
  * User Content Provider interface.
  *
- * @author     Joshua Ruesweg
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\System\User\Content\Provider
- * @since      5.2
+ * @author  Joshua Ruesweg
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\System\User\Content\Provider
+ * @since   5.2
  */
-interface IUserContentProvider {
-       /**
-        * Returns a DatabaseObjectList with all user content objects. 
-        * 
-        * @param       User                    $user
-        * @return      DatabaseObjectList
-        */
-       public function getContentListForUser(User $user);
-       
-       /**
-        * Delete the content for the given object ids.
-        * 
-        * @param       int[]   $objectIDs
-        */
-       public function deleteContent(array $objectIDs);
+interface IUserContentProvider
+{
+    /**
+     * Returns a DatabaseObjectList with all user content objects.
+     *
+     * @param User $user
+     * @return      DatabaseObjectList
+     */
+    public function getContentListForUser(User $user);
+
+    /**
+     * Delete the content for the given object ids.
+     *
+     * @param int[] $objectIDs
+     */
+    public function deleteContent(array $objectIDs);
 }