Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-03-09-21-44-34
[civicrm-core.git] / Civi / API / Event / PrepareEvent.php
index f7cf7dceaa63762bcd57076c417bfa2d525bf1f8..a3d7e412a31e0bfab57fb1bc444b1b2335734386 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | 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\Event;
 
+/**
+ * Class PrepareEvent
+ * @package Civi\API\Event
+ */
 class PrepareEvent extends Event {
   /**
    * @param array $apiRequest
+   *   The full description of the API request.
    * @return RespondEvent
    */
   public function setApiRequest($apiRequest) {
     $this->apiRequest = $apiRequest;
     return $this;
   }
+
 }