Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / Core / Reference / Dynamic.php
index 863018d9ad3fca4618bfa7663a8b34df6c1db3d5..64fc790ebc34650dfbf5e727e68777826626f5be 100644 (file)
@@ -17,11 +17,12 @@ class CRM_Core_Reference_Dynamic extends CRM_Core_Reference_Basic {
   }
 
   /**
-   * Create a query to find references to a particular record
+   * Create a query to find references to a particular record.
    *
    * @param CRM_Core_DAO $targetDao
    *   The instance for which we want references.
-   * @return CRM_Core_DAO a query-handle (like the result of CRM_Core_DAO::executeQuery)
+   * @return CRM_Core_DAO
+   *   a query-handle (like the result of CRM_Core_DAO::executeQuery)
    */
   public function findReferences($targetDao) {
     $refColumn = $this->getReferenceKey();
@@ -29,7 +30,6 @@ class CRM_Core_Reference_Dynamic extends CRM_Core_Reference_Basic {
 
     $params = array(
       1 => array($targetDao->$targetColumn, 'String'),
-
       // If anyone complains about $targetDao::getTableName(), then could use
       // "{get_class($targetDao)}::getTableName();"
       2 => array($targetDao::getTableName(), 'String'),
@@ -56,7 +56,6 @@ EOS;
     $targetColumn = $this->getTargetKey();
     $params = array(
       1 => array($targetDao->$targetColumn, 'String'),
-
       // If anyone complains about $targetDao::getTableName(), then could use
       // "{get_class($targetDao)}::getTableName();"
       2 => array($targetDao::getTableName(), 'String'),