Merge remote-tracking branch 'upstream/4.6' into 4.6-master-2015-07-13-12-30-17
[civicrm-core.git] / Civi / API / Provider / ProviderInterface.php
index 19cc0b4c85dabb5f7c83bde51164100a6d98be61..31d17d521415143b333d5a2c96b181cb40fa6905 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 namespace Civi\API\Provider;
+
 use Civi\API\Events;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 
@@ -36,7 +37,8 @@ interface ProviderInterface {
   /**
    * @param array $apiRequest
    *   The full description of the API request.
-   * @return array structured response data (per civicrm_api3_create_success)
+   * @return array
+   *   structured response data (per civicrm_api3_create_success)
    * @see civicrm_api3_create_success
    * @throws \API_Exception
    */
@@ -57,4 +59,5 @@ interface ProviderInterface {
    * @return array<string>
    */
   public function getActionNames($version, $entity);
+
 }