Merge pull request #4822 from kurund/indentation-fixes
[civicrm-core.git] / CRM / Financial / BAO / FinancialType.php
index 9b99f007ec56f14aefd0d4c59da9fdf3feba6feb..c86c7a285458c488bec8aed33de31f74972760a9 100644 (file)
@@ -2,7 +2,7 @@
 
 /*
   +--------------------------------------------------------------------+
-  | CiviCRM version 4.5                                                |
+  | CiviCRM version 4.6                                                |
   +--------------------------------------------------------------------+
   | Copyright CiviCRM LLC (c) 2004-2014                                |
   +--------------------------------------------------------------------+
 class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
 
   /**
-   * static holder for the default LT
+   * Static holder for the default LT
    */
   static $_defaultContributionType = null;
 
   /**
-   * class constructor
+   * Class constructor
    */
-  function __construct( ) {
+  public function __construct( ) {
     parent::__construct( );
   }
 
@@ -55,10 +55,9 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
    * @param array $defaults (reference ) an assoc array to hold the flattened values
    *
    * @return CRM_Contribute_BAO_ContributionType object
-   * @access public
    * @static
    */
-  static function retrieve( &$params, &$defaults ) {
+  public static function retrieve( &$params, &$defaults ) {
     $financialType = new CRM_Financial_DAO_FinancialType( );
     $financialType->copyValues( $params );
     if ($financialType->find(true)) {
@@ -69,7 +68,7 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
   }
 
   /**
-   * update the is_active flag in the db
+   * Update the is_active flag in the db
    *
    * @param int      $id        id of the database record
    * @param boolean  $is_active value we want to set the is_active field
@@ -77,21 +76,20 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
    * @return Object             DAO object on sucess, null otherwise
    * @static
    */
-  static function setIsActive( $id, $is_active ) {
+  public static function setIsActive( $id, $is_active ) {
     return CRM_Core_DAO::setFieldValue( 'CRM_Financial_DAO_FinancialType', $id, 'is_active', $is_active );
   }
 
   /**
-   * add the financial types
+   * Add the financial types
    *
    * @param array $params reference array contains the values submitted by the form
    * @param array $ids    reference array contains the id
    *
-   * @access public
    * @static
    * @return object
    */
-  static function add(&$params, &$ids = array()) {
+  public static function add(&$params, &$ids = array()) {
     if(empty($params['id'])) {
       $params['is_active'] = CRM_Utils_Array::value('is_active', $params, false);
       $params['is_deductible'] = CRM_Utils_Array::value('is_deductible', $params, false);
@@ -114,14 +112,14 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
   }
 
   /**
-   * delete financial Types
+   * Delete financial Types
    *
    * @param int $financialTypeId
    *
    * @return array|bool
    * @static
    */
-  static function del($financialTypeId) {
+  public static function del($financialTypeId) {
     $financialType = new CRM_Financial_DAO_FinancialType( );
     $financialType->id = $financialTypeId;
     $financialType->find(true);
@@ -161,13 +159,13 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
   }
 
   /**
-   * to fetch financial type having relationship as Income Account is
+   * To fetch financial type having relationship as Income Account is
    *
    *
    * @return array  all financial type with income account is relationship
    * @static
    */
-  static function getIncomeFinancialType() {
+  public static function getIncomeFinancialType() {
     // Financial Type
     $financialType = CRM_Contribute_PseudoConstant::financialType();
     $revenueFinancialType = array();
@@ -189,4 +187,3 @@ class CRM_Financial_BAO_FinancialType extends CRM_Financial_DAO_FinancialType {
     return $financialType;
   }
 }
-