more comment fixes
[civicrm-core.git] / CRM / Core / FileSearchInterface.php
index 3e793a5c37a5de583e9bc9649f4cb74b73946028..dd41550b1cc89145d2c20ae3f5ea1cce41721ff1 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
+/**
+ * Interface CRM_Core_FileSearchInterface
+ */
 interface CRM_Core_FileSearchInterface {
   const DEFAULT_SEARCH_LIMIT = 20;
   const DEFAULT_SEARCH_OFFSET = 0;
@@ -23,4 +26,5 @@ interface CRM_Core_FileSearchInterface {
    *   - xparent_id: int - business-entity to which file is attached (directly or indirectly)
    */
   public function search($query, $limit = self::DEFAULT_SEARCH_LIMIT, $offset = self::DEFAULT_SEARCH_OFFSET);
+
 }