Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / like / ILikeObjectTypeProvider.class.php
index b1ecfa1a341aae21ccfb4a03fc771a12fb8973bd..e9e6bf9d9011e618a6440abdefe59f918bdc8142 100644 (file)
@@ -1,22 +1,25 @@
 <?php
+
 namespace wcf\data\like;
+
 use wcf\data\like\object\ILikeObject;
 use wcf\data\object\type\IObjectTypeProvider;
 
 /**
  * Default interface for like object type providers.
- * 
- * @author     Alexander Ebert
- * @copyright  2001-2019 WoltLab GmbH
- * @license    GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
- * @package    WoltLabSuite\Core\Data\Like
+ *
+ * @author  Alexander Ebert
+ * @copyright   2001-2019 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core\Data\Like
  */
-interface ILikeObjectTypeProvider extends IObjectTypeProvider {
-       /**
-        * Returns true if the active user can access the given likeable object.
-        * 
-        * @param       ILikeObject     $object
-        * @return      bool
-        */
-       public function checkPermissions(ILikeObject $object);
+interface ILikeObjectTypeProvider extends IObjectTypeProvider
+{
+    /**
+     * Returns true if the active user can access the given likeable object.
+     *
+     * @param ILikeObject $object
+     * @return  bool
+     */
+    public function checkPermissions(ILikeObject $object);
 }