phpcs - Fix error, "Expected 1 newline at end of file; XXX found".
[civicrm-core.git] / CRM / Contact / Page / CustomSearch.php
index 814cc0d8e8aefb112fc1ee2e803cb64b9812cfbc..80875354d74387e5129c32ee9deed2404389dc52 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -82,18 +82,18 @@ ORDER By  v.weight
    * @return content of the parents run method
    *
    */
-  function browse() {
+  public function browse() {
     $rows = self::info();
     $this->assign('rows', $rows);
     return parent::run();
   }
 
   /**
-   * run this page (figure out the action needed and perform it).
+   * Run this page (figure out the action needed and perform it).
    *
    * @return void
    */
-  function run() {
+  public function run() {
     $action = CRM_Utils_Request::retrieve('action',
       'String',
       $this, FALSE, 'browse'
@@ -103,4 +103,3 @@ ORDER By  v.weight
     return $this->browse();
   }
 }
-