Merge branch 'angular-tests' of https://github.com/giant-rabbit/civicrm-core into...
[civicrm-core.git] / CRM / Mailing / MailStore / Pop3.php
index b2e4b29255e6bf6cdfb2be9b620e9bd589f37fff..7004f66d11d7f932240f48dd47d8509f2e6de6ff 100644 (file)
@@ -51,7 +51,7 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
    *
    * @return \CRM_Mailing_MailStore_Pop3
    */
-  function __construct($host, $username, $password, $ssl = TRUE) {
+  public function __construct($host, $username, $password, $ssl = TRUE) {
     if ($this->_debug) {
       print "connecting to $host and authenticating as $username\n";
     }
@@ -71,7 +71,7 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
    *
    * @return void
    */
-  function markIgnored($nr) {
+  public function markIgnored($nr) {
     if ($this->_debug) {
       print "fetching message $nr and putting it in the ignored mailbox\n";
     }
@@ -88,7 +88,7 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
    *
    * @return void
    */
-  function markProcessed($nr) {
+  public function markProcessed($nr) {
     if ($this->_debug) {
       print "fetching message $nr and putting it in the processed mailbox\n";
     }
@@ -98,4 +98,3 @@ class CRM_Mailing_MailStore_Pop3 extends CRM_Mailing_MailStore {
     $this->_transport->delete($nr);
   }
 }
-