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

Small improvement #22

Open mainman opened 11 years ago

mainman commented 11 years ago

Hi, All the :

for ($i = 0; $i < 80; $i++)
{
    $r .= '-';
}

in ipnlistener::getTextReport can be replaced by :

$r .= str_repeat('-', 80);

Thanks anyway for this good IPN Listner !