MicahCarrick / PHP-PayPal-IPN

PHP 5 class to listen for and handle Instant Payment Notifications (IPN) from PayPal.
BSD 3-Clause "New" or "Revised" License
419 stars 211 forks source link

Use sel as opposed to the class name #12

Closed darrenwh closed 12 years ago

darrenwh commented 12 years ago

Can I suggest that self:: be used instead of IpnListener:: lines 170 and 171

http://php.net/manual/en/language.oop5.constants.php

private function getPaypalHost() {
    if ($this->use_sandbox) return self::SANDBOX_HOST;
    else return self::PAYPAL_HOST;
}
MicahCarrick commented 12 years ago

Agreed and done.