X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=Civi%2FAPI%2FProvider%2FProviderInterface.php;h=31d17d521415143b333d5a2c96b181cb40fa6905;hb=88d3877e2dbcdfdf52d9eaa6c3938ae46be54dd8;hp=19cc0b4c85dabb5f7c83bde51164100a6d98be61;hpb=347185d7709adf00659d042b2fa98b93f03f2672;p=civicrm-core.git diff --git a/Civi/API/Provider/ProviderInterface.php b/Civi/API/Provider/ProviderInterface.php index 19cc0b4c85..31d17d5214 100644 --- a/Civi/API/Provider/ProviderInterface.php +++ b/Civi/API/Provider/ProviderInterface.php @@ -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. | | | @@ -23,9 +23,10 @@ | 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 */ public function getActionNames($version, $entity); + }