phpcs - Fix error, "Expected 1 newline at end of file; XXX found".
[civicrm-core.git] / CRM / Contact / Page / CustomSearch.php
index 049a249179cc2bea8a19882a8d52b70dc8b36a57..80875354d74387e5129c32ee9deed2404389dc52 100644 (file)
@@ -82,7 +82,7 @@ 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();
@@ -93,7 +93,7 @@ ORDER By  v.weight
    *
    * @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();
   }
 }
-