More docblock stuff.
[civicrm-core.git] / CRM / Contribute / Page / DashBoard.php
index 74332aba85b5ffb31aa48dec22aa1e4fb92ffbc0..5ebaead6c3626b328c21ea5cd1c0adbcce1c1840 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -43,10 +43,9 @@ class CRM_Contribute_Page_DashBoard extends CRM_Core_Page {
    * the contact and calls the appropriate type of page to view.
    *
    * @return void
-   * @access public
    *
    */
-  function preProcess() {
+  public function preProcess() {
     CRM_Utils_System::setTitle(ts('CiviContribute'));
 
     $status      = array('Valid', 'Cancelled');
@@ -105,9 +104,8 @@ class CRM_Contribute_Page_DashBoard extends CRM_Core_Page {
    * it decides the which action has to be taken for the page.
    *
    * return null
-   * @access public
    */
-  function run() {
+  public function run() {
     $this->preProcess();
 
     $controller = new CRM_Core_Controller_Simple('CRM_Contribute_Form_Search',
@@ -132,4 +130,3 @@ class CRM_Contribute_Page_DashBoard extends CRM_Core_Page {
     return parent::run();
   }
 }
-