minor cleanup

This commit is contained in:
David Bomba 2021-10-21 18:19:40 +11:00
parent 9f79b4b519
commit e02dace9cc
2 changed files with 1 additions and 5 deletions

View File

@ -69,7 +69,7 @@ class SubscriptionCalculator
if($refund_invoice)
{
$subscription = Subscription::find($this->invoice->subscription_id);
$pro_rata = new ProRata();
$pro_rata = new ProRata;
$to_date = $subscription->service()->getNextDateForFrequency(Carbon::parse($refund_invoice->date), $subscription->frequency_id);

View File

@ -25,17 +25,13 @@ use Illuminate\Support\Facades\Queue;
class SystemHealth
{
private static $extensions = [
// 'mysqli',
'gd',
'curl',
'zip',
// 'gmp',
'openssl',
'mbstring',
'xml',
'bcmath',
// 'mysqlnd',
//'intl', //todo double check whether we need this for email dns validation
];
private static $php_version = 7.4;