Merge pull request #4931 from davecivicrm/INFRA-132
[civicrm-core.git] / CRM / Contribute / Page / ManagePremiums.php
index 56850757bccc93905e7777e4e87483803650481c..17cf09472d67ec7cd1b7e6f4783717ce981bb698 100644 (file)
@@ -44,7 +44,6 @@ class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
    * The action links that we need to display for the browse screen
    *
    * @var array
-   * @static
    */
   static $_links = NULL;
 
@@ -139,7 +138,6 @@ class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
    *
    *
    * @return void
-   * @static
    */
   public function browse() {
     // get all custom groups sorted by weight
@@ -171,7 +169,7 @@ class CRM_Contribute_Page_ManagePremiums extends CRM_Core_Page_Basic {
         $dao->id
       );
       //Financial Type
-      if (!empty($dao->financial_type_id) ) {
+      if (!empty($dao->financial_type_id)) {
         require_once 'CRM/Core/DAO.php';
         $premiums[$dao->id]['financial_type_id'] = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_FinancialType', $dao->financial_type_id, 'name');
       }