a few comment fixes
[civicrm-core.git] / CRM / Mailing / Page / Unsubscribe.php
index 8b7a258a7c974420c2f66373251bd7dcc48a1222..398e8e63255d3f2b20ac78dd1d5bf685a03746a3 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  */
 class CRM_Mailing_Page_Unsubscribe extends CRM_Mailing_Page_Common {
 
-  function run() {
+  /**
+   * Run page.
+   *
+   * This includes assigning smarty variables and other page processing.
+   *
+   * @return string
+   * @throws Exception
+   */
+  public function run() {
     $this->_type = 'unsubscribe';
     return parent::run();
   }
-}
 
+}